:root {
  --primary-blue: #6366f1; /* Indigo 500 */
  --light-blue: #eef2ff; /* Indigo 50 */
  --text-dark: #111827;
  --text-grey: #6b7280;
  --white: #ffffff;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.5;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  padding: 20px 0;
  background: var(--white);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-blue);
  border-radius: 8px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Hero */
.hero {
  padding: 60px 0 0;
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1.1;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.store-btn {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  height: 50px;
}

.store-btn svg {
  height: 24px;
  width: 24px;
  fill: currentColor;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn-text small {
  font-size: 0.6rem;
  line-height: 1;
}

.store-btn-text strong {
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 600;
}

.hero-image-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

/* Section Titles */
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-blue);
  text-align: center;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Features */
.features {
  background-color: var(--light-blue);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-mockup {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* How it works */
.how-it-works {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: -20px auto 60px auto;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.star-icon {
  width: 100%;
  height: 100%;
  color: var(--primary-blue);
}

.step-number {
  position: absolute;
  color: var(--white);
  font-weight: 900;
  font-size: 1.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 12px 0;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
  max-width: 250px;
}

.step-line {
  flex: 1;
  height: 2px;
  border-top: 2px dashed var(--text-grey);
  margin-top: 40px;
  opacity: 0.5;
}

/* Reviews */
.reviews {
  background-color: var(--light-blue);
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 40px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.stars svg {
  width: 24px;
  height: 24px;
}

.review-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.review-text {
  font-size: 1rem;
  color: var(--text-grey);
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.review-author {
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--white);
}

.cta-box {
  background-color: var(--primary-blue);
  border-radius: 32px;
  display: flex;
  overflow: hidden;
}

.cta-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 40px 0;
  text-transform: uppercase;
  line-height: 1.1;
}

.cta-buttons {
  justify-content: flex-start;
  margin: 0;
}

.cta-image-wrapper {
  flex: 1;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  margin: 20px 0 20px 20px;
  overflow: hidden;
}

.cta-mockup {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Footer */
.footer {
  padding: 40px 0;
  background-color: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-grey);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    height: 300px;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .step-line {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
  }
  .cta-image-wrapper {
    margin: 0;
    border-radius: 0;
    height: 300px;
  }
  .footer-container {
    flex-direction: column;
    gap: 24px;
  }
}