/* DiyetUzmanı - LearnFlow tarzı Modern Landing Page UI */
:root {
  --primary: #782DD4;
  --secondary: #FEE9A5;
  --accent: #FFD700;
  --light-bg: #FFF9ED;
  --yellow: #FBBF24;
  --purple: #A78BFA;
  --lilac: #C4B5FD;
  --mint: #43C6AC;
  --black: #111827;
  --gray: #6B7280;
  --white: #FFFFFF;
  --bg-main: #FFFFFF;
  --shadow: 0 4px 24px 0 rgba(171, 148, 255, 0.08);
  --radius: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
  max-width: 1440px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background: var(--light-bg);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid #e5e0f7;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Button Styles */
.btn-purple, .btn-outline {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-purple {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

/* Hero Section */
.hero {
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 420px;
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title-main {
  font-size: 2.8rem;
  font-weight: 900;
  color: #5b2dd4;
  line-height: 1.13;
  display: block;
}

.hero-content .highlight {
  color: #a259f7;
}

.hero-desc {
  color: #333;
  font-size: 1.18rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  max-width: 600px;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0.7rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-feature-number {
  font-size: 2.7rem;
  font-weight: 800;
  color: #F2994A;
  line-height: 1;
  margin-right: 8px;
}

.hero-feature-desc {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0a3576;
  margin-right: 12px;
}

.hero-feature-avatars {
  display: flex;
  align-items: center;
  gap: -12px;
}

.hero-feature-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.10);
  margin-left: -12px;
  background: #eee;
}

.hero-feature-avatars img:first-child {
  margin-left: 0;
}

.hero-feature-users {
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 1.1rem;
  margin-top: 0.5rem;
}

.btn-orange.hero-feature-btn {
  display: inline-block;
  background: #F2994A;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 16px 38px;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(242,153,74,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: 0.2rem;
}

.btn-orange.hero-feature-btn:hover {
  background: #d97a1b;
  color: #fff;
}

.hero-feature-btn .arrow {
  font-size: 1.2em;
  margin-left: 8px;
  vertical-align: middle;
}

.hero-image {
  flex: 0 0 420px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 40px;
}

.hero-image img {
  width: 420px;
  border-radius: 20px;
  max-width: 100%;
}

/* Info Bar */
.info-bar {
  background: var(--accent);
  padding: 20px 40px;
  display: flex;
  justify-content: space-around;
  font-weight: 500;
  font-size: 16px;
}

.info-bar img {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/* How It Works Section */
.how-section {
  background: #fff;
  padding: 80px 40px;
  text-align: center;
}

.how-section h2 {
  font-size: 32px;
  margin-bottom: 60px;
}

.how-steps {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.how-step {
  max-width: 200px;
}

.how-step img {
  margin-bottom: 15px;
}

.how-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 15px;
  color: #555;
}

/* Reviews Section */
.reviews-section {
  background: #f5f9f6;
  padding: 60px 40px;
  text-align: center;
}

.reviews-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.reviews-section .rating {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.reviews-section .rating strong {
  color: #27ae60;
}

.review-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.review-card {
  min-width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 20px;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.reviewer-info strong {
  display: block;
}

.reviewer-info span {
  font-size: 13px;
  color: gray;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-rating img {
  width: 24px;
  height: 24px;
}

.review-rating span {
  font-weight: 600;
  font-size: 14px;
}

.review-text {
  font-size: 15px;
  color: #333;
  margin-top: 15px;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  padding: 80px 40px;
  background: #fffde7;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-image {
  flex: 1;
  min-width: 300px;
}

.faq-image img {
  max-width: 100%;
  border-radius: 12px;
}

.faq-content {
  flex: 1;
  min-width: 300px;
}

.faq-content h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question img {
  width: 20px;
}

.faq-answer {
  margin-top: 10px;
  font-size: 15px;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero { padding: 40px 24px 32px 24px; }
  .hero-image { margin-left: 16px; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; padding: 32px 10px 24px 10px; }
  .hero-content { max-width: 100%; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero-image { margin-left: 0; margin-top: 24px; justify-content: center; width: 100%; }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 20px;
  }
  
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  nav a {
    margin: 0;
  }
  
  .info-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .review-slider {
    padding: 0 20px;
  }
}

/* HERO */
.dz-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 0 0 0;
  min-height: 520px;
  gap: 0;
}
.dz-hero-col {
  flex: 1 1 0;
  min-width: 320px;
}
.dz-hero-left {
  flex: 1 1 0;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 32px;
}
.dz-hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.2rem;
  line-height: 1.08;
  letter-spacing: -1px;
}
.dz-highlight {
  color: #FBBF24;
}
.dz-hero-desc {
  color: #6B7280;
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
  max-width: 520px;
}
.dz-hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.dz-btn {
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 2.2rem;
  padding: 0.95rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.08);
  text-decoration: none;
}
.dz-btn-primary {
  background: #A78BFA;
  color: #fff;
}
.dz-btn-primary:hover {
  background: #FBBF24;
  color: #111827;
}
.dz-btn-outline {
  background: #fff;
  color: #A78BFA;
  border: 2px solid #A78BFA;
}
.dz-btn-outline:hover {
  background: #A78BFA;
  color: #fff;
}
.dz-hero-badges {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.dz-hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #111827;
  font-size: 1.01rem;
  background: #fff;
  border-radius: 1.2rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.08);
}
.dz-badge-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #fff;
}
.dz-bg-mint { background: #43C6AC; }
.dz-bg-yellow { background: #FBBF24; color: #111827; }
.dz-bg-purple { background: #A78BFA; }

.dz-hero-right {
  flex: 1 1 0;
  min-width: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 32px;
}
.dz-hero-visual {
  position: relative;
  width: 340px;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dz-hero-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.dz-hero-circle-1 {
  width: 340px;
  height: 340px;
  left: 0;
  top: 40px;
  background: #FBBF24;
  opacity: 0.18;
}
.dz-hero-circle-2 {
  width: 260px;
  height: 260px;
  left: 40px;
  top: 80px;
  background: #FBBF24;
  opacity: 0.32;
}
.dz-hero-rating-badge {
  position: absolute;
  left: 0;
  top: 0;
  background: #FBBF24;
  color: #111827;
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 1.2rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(251,191,36,0.10);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.dz-hero-rating-badge span {
  font-weight: 400;
  font-size: 0.98rem;
  margin-left: 0.7rem;
}
.dz-hero-img {
  width: 220px;
  height: 320px;
  object-fit: contain;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.10);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.dz-hero-members {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.10);
  padding: 0.7rem 1.5rem 0.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}
.dz-hero-members-count {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111827;
  text-align: center;
  margin-bottom: 0.2rem;
}
.dz-hero-members-count span {
  font-weight: 400;
  font-size: 0.98rem;
  color: #6B7280;
}
.dz-hero-members-avatars {
  display: flex;
  gap: -8px;
  margin-top: 0.2rem;
}
.dz-hero-members-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px 0 rgba(171, 148, 255, 0.10);
  margin-left: -8px;
  background: #eee;
}

/* Benefit Cards */
.dz-benefits {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding: 0;
}
.dz-benefit-card {
  background: #F9F9F9;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.08);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 0;
}
.dz-benefit-icon {
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
.dz-benefit-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.3rem;
  text-align: center;
}
.dz-benefit-desc {
  color: #6B7280;
  font-size: 0.98rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1100px) {
  .dz-hero { flex-direction: column; align-items: center; min-height: unset; padding: 32px 0 0 0; }
  .dz-hero-left, .dz-hero-right { padding: 0; }
  .dz-hero-visual { margin-top: 2rem; }
  .dz-benefits { flex-direction: column; gap: 1.2rem; }
}
@media (max-width: 700px) {
  .dz-hero-visual { width: 180px; height: 220px; }
  .dz-hero-img { width: 100px; height: 140px; }
  .dz-hero-title { font-size: 1.3rem; }
  .dz-benefit-card { min-width: 0; max-width: 100%; padding: 1.2rem 0.7rem; }
}

/* STATS BAR */
.dz-stats-bar {
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  right: 50%;
  position: relative;
  background: #FBBF24;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-weight: 600;
  font-size: 1.01rem;
  padding: 0.7rem 0;
  box-shadow: 0 2px 8px 0 rgba(251,191,36,0.08);
  margin-top: 64px;
}
.dz-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 900px) {
  .dz-stats-bar { flex-direction: column; gap: 0.7rem; font-size: 0.98rem; }
}

/* BENEFITS */
.dz-benefits-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.2rem 0 0 0;
}
.dz-benefits-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.dz-benefit-card {
  background: #A78BFA10;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.08);
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 240px;
}
.dz-benefit-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.7rem;
}
.dz-benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 0.4rem 1.1rem;
  margin: 0.3rem 0.2rem 0 0;
  color: #111827;
  background: #FBBF24;
  box-shadow: 0 2px 8px 0 rgba(251,191,36,0.08);
}
.dz-bg-mint { background: #43C6AC !important; color: #fff !important; }
.dz-bg-yellow { background: #FBBF24 !important; color: #111827 !important; }
.dz-bg-purple { background: #A78BFA !important; color: #fff !important; }

.dz-benefits-right {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2rem;
}
.dz-benefits-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.1rem;
}
.dz-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.dz-benefit-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #111827;
}
.dz-benefit-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .dz-hero-inner, .dz-benefits-section { flex-direction: column; align-items: center; gap: 1.5rem; }
  .dz-hero-left, .dz-hero-right, .dz-benefits-left, .dz-benefits-right { padding: 0; align-items: center; }
}
@media (max-width: 700px) {
  .dz-hero-img-wrap { width: 180px; height: 220px; }
  .dz-hero-img { width: 140px; height: 180px; }
  .dz-hero-badge, .dz-badge-count { left: 0; top: 0; font-size: 0.9rem; padding: 0.4rem 0.7rem; }
  .dz-benefits-section { gap: 0.7rem; }
}

/* NASIL ÇALIŞIR */
.dz-how-section {
  background: var(--bg-main);
  border-radius: 0;
  box-shadow: none;
  padding: 2.5rem 0 0 0;
  margin-bottom: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.dz-how-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.2rem;
  text-align: center;
}
.dz-how-steps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.dz-how-card {
  background: var(--lilac);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 220px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1.2rem 1rem;
  text-align: center;
  border: none;
  margin: 0 8px;
}
.dz-how-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--purple) 60%, var(--yellow) 100%);
  box-shadow: 0 2px 8px 0 rgba(251,191,36,0.08);
}
.dz-how-card:nth-child(2) .dz-how-icon {
  background: linear-gradient(135deg, var(--mint) 60%, var(--purple) 100%);
}
.dz-how-card:nth-child(3) .dz-how-icon {
  background: linear-gradient(135deg, var(--yellow) 60%, var(--mint) 100%);
}
.dz-how-card:nth-child(4) .dz-how-icon {
  background: linear-gradient(135deg, var(--purple) 60%, var(--yellow) 100%);
}
.dz-how-step-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  margin-top: 2px;
}
.dz-how-step-desc {
  color: var(--gray);
  font-size: 0.98rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .dz-how-steps { flex-direction: column; gap: 8px; align-items: center; }
  .dz-how-card { width: 100%; max-width: 340px; margin: 8px 0; }
  .dz-benefits-section { gap: 0.7rem; }
}

.hero-feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 32px;
  margin-bottom: 0;
  width: 100%;
}
.hero-feature-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-feature-col-left {
  align-items: flex-start;
  min-width: 180px;
}
.hero-feature-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #F2994A;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-feature-desc {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0a3576;
  margin-bottom: 0.2rem;
}
.hero-feature-col-right {
  align-items: flex-start;
  gap: 10px;
}
.hero-feature-users {
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 1.1rem;
  margin-left: 0;
  text-align: left;
}
.btn-orange.hero-feature-btn {
  display: inline-block;
  background: #F2994A;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 16px 38px;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(242,153,74,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: 0.2rem;
  margin-left: 0;
}
.btn-orange.hero-feature-btn:hover {
  background: #d97a1b;
  color: #fff;
}
.hero-feature-btn .arrow {
  font-size: 1.2em;
  margin-left: 8px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .hero-feature-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-feature-col-left, .hero-feature-col-right { align-items: flex-start; }
}

.hero-feature-avatars {
  display: flex;
  align-items: center;
  gap: -12px;
  margin-bottom: 0.5rem;
}
.hero-feature-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.10);
  margin-left: -12px;
  background: #eee;
}
.hero-feature-avatars img:first-child {
  margin-left: 0;
}

.hero-flex-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 0.7rem;
}
.hero-flex-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 24px;
  width: max-content;
}
.hero-feature-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F2994A;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.hero-feature-desc {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a3576;
  margin-bottom: 0.7rem;
}
.hero-flex-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3rem;
  height: 100%;
}
.hero-feature-avatars {
  display: flex;
  align-items: center;
  gap: -12px;
  margin-bottom: 0.2rem;
}
.hero-feature-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.10);
  margin-left: -12px;
  background: #eee;
}
.hero-feature-avatars img:first-child {
  margin-left: 0;
}
.hero-feature-users {
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 0.1rem;
  margin-top: 0.1rem;
  align-self: flex-start;
}
.btn-orange.hero-feature-btn {
  display: inline-block;
  background: #F2994A;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 16px 38px;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(242,153,74,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: 1.2rem;
  width: 100%;
}
.btn-orange.hero-feature-btn:hover {
  background: #d97a1b;
  color: #fff;
}
.hero-feature-btn .arrow {
  font-size: 1.2em;
  margin-left: 8px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .hero-flex-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-flex-left, .hero-flex-right { align-items: flex-start; }
} 