/* InstaDoodle landing page */

.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--ocean);
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.video-wrapper {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--teal-light);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.stats-bar {
  background: var(--ocean);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.stat { text-align: center; }

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

section {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ocean);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.6;
}

.img-banner {
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.img-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-img img {
  width: 100%;
  height: auto;
  display: block;
}

.split-text h3 {
  font-size: 1.8rem;
  color: var(--ocean);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.split-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.split-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.split-check li {
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.split-check li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}

.feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ocean);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 2.5rem;
  line-height: 1;
}

.step-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--ocean);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.testimonial-stars {
  color: var(--teal);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

.cta-block {
  background: var(--ocean);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-block h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
}

.cta-guarantee {
  margin-top: 1rem;
  font-size: 0.78rem;
}

.cta-guarantee span { color: rgba(255, 255, 255, 0.55); }

.guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--teal-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-icon { font-size: 2rem; }

.guarantee-text strong {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean);
}

.guarantee-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

@media (max-width: 620px) {
  .stats-bar { gap: 1.5rem; }
  .hero { padding: 3rem 1.25rem 2rem; }
  section { padding: 2.5rem 1.25rem; }
  .cta-block { padding: 2rem 1.25rem; }
  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse { direction: ltr; }
}
