/* =========================
   GLOBAL / RESET
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  margin: 0 0 16px;
  text-align: center;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
}


/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
  padding: 16px 0;
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 32px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.site-header .logo img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: block;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  white-space: nowrap;
}


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

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.hero-left,
.hero-right {
  flex: 1;
}

.hero-image-placeholder {
  min-height: 280px;
  border-radius: 12px;

  background-color: #ffffff;

  border: 1px solid #e5e7eb;

  box-shadow: 0 8px 24px rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #64748b;
  font-weight: 600;
}


/* =========================
   FEATURES
========================= */

.features {
  text-align: center;
}

.features .section-intro,
.features .section-text {
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.features-list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.feature-card {
  flex: 1;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 12px;
}

.feature-card h3 {
  margin: 0 0 12px;
}

.feature-card p {
  margin: 0;
  line-height: 1.6;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  text-align: center;
}

.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials .section-intro,
.testimonials .section-text,
.testimonials > .container > p {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.6;
}

.testimonials-list {
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonials-list figure {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 20px;
  text-align: center;
}

.testimonials-list blockquote {
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonials-list figcaption {
  margin: 0;
  text-align: center;
}


/* =========================
   PRICING
========================= */

.pricing {
  text-align: center;
}

.pricing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing .section-text,
.pricing > .container > p {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.6;
}

.pricing-cards,
.pricing-list,
.pricing-tiers {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-card,
.plan-card,
.pricing-tier {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
}

.pricing-card h3,
.plan-card h3,
.pricing-tier h3 {
  margin-top: 0;
}


/* =========================
   CTA
========================= */

.cta-section {
  text-align: center;
}

.cta-container {
  display: flex;
  justify-content: center;
}

.cta-content {
  max-width: 650px;
}

.cta-section .section-text {
  margin: 0 auto;
  line-height: 1.6;
}


/* =========================
   SIGNUP
========================= */

.signup-section {
  text-align: center;
}

.signup-form {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 1rem;
}

.signup-form button {
  width: 100%;
  margin-top: 10px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
  text-align: center;
}

.contact-card {
  max-width: 420px;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 12px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.contact-list li {
  margin-bottom: 12px;
}

.contact-section .section-text {
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.6;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 60px 0 30px;
  text-align: center;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.site-footer .logo img {
  width: auto;
  height: 360px;
}

.site-footer p {
  margin-bottom: 24px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
}

.site-footer nav {
  margin-top: 10px;
}

.site-footer small {
  display: block;
  font-size: 0.9rem;
  margin-top: 10px;
}


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

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    width: 100%;
  }

  .hero-image-placeholder {
    width: 100%;
  }

  .features-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-card {
    min-width: 220px;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}