body {
  font-family: Arial, sans-serif;
  padding: 40px;
}

.hidden {
  display: none;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
}

img {
  margin-top: 10px;
}

/* ======================
   HERO SECTION
====================== */

.hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.hero-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
}

.hero-visual {
  flex: 1;
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
  background: #f5f5f5;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
}
/* ======================
   ORDER SUMMARY
====================== */

.summary-layout {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto;
}

.summary-details {
  flex: 1;
}

.summary-visual {
  flex: 1;
}

.summary-visual img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  background: #f5f5f5;
}

@media (max-width: 900px) {
  .summary-layout {
    flex-direction: column;
  }
}

.summary-visual {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.summary-visual img.hidden {
  display: none;
}

/* HERO BANNER >> Landing */

.hero-banner {
  background: #D9CCFF; /* pastel magenta / lila */
  padding: 80px 24px;
}

#landing {
  background: #dcd3ff; /* logodaki pastel magenta */
  padding: 80px 24px;
}


.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-logo {
  width: 140px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.hero-text p {
  font-size: 1.05rem;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.hero-trust {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
}

.hero-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* MOBILE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo {
    margin: 0 auto 24px;
  }
}

.how-it-works {
  background: #E9E2FF; /* pastel lavender */
  padding: 80px 20px;
  text-align: center;
}
.workflow-image {
  max-width: 1100px;
  width: 100%;
  margin-top: 40px;
  border-radius: 24px;
}
.how-it-works h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.how-sub {
  font-size: 1.1rem;
  color: #555;
}

.why-love {
  background: #f3ecff; /* pastel lila */
  padding: 80px 20px;
  text-align: center;
}

.why-love h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.why-card {
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ikon için küçük bounce hissi */
.why-icon {
  transition: transform 0.25s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-3deg);
}

.site-footer {
  background: #fceacf; /* Tiny Visions turuncusuna yakın */
  color: #111;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 200px;
  margin-bottom: 2px;
}

.footer-tagline {
  max-width: 340px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact h4 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* INSTAGRAM */
.footer-instagram img {
  width: 72px;
  height: 72px;
}

.footer-contact a:hover {
  opacity: 0.75;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.15);
  text-align: center;
  padding: 14px;
  font-size: 0.8rem;
}




