/* =======================
   RESET & BASE
======================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #111;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =======================
   LAYOUT
======================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding-inline: 16px;
  margin-inline: auto;
}

.container.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

/* =======================
   HEADER & NAV
======================= */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #e11d48;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  padding: 6px 0;
}

/* Mobile nav wrap */
@media (max-width: 640px) {
  nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav a {
    font-size: 13px;
  }
}

/* =======================
   HERO
======================= */
.hero {
  padding: clamp(40px, 6vw, 70px) 0;
  background: linear-gradient(180deg, #fff, #f9fafb);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: clamp(15px, 2.5vw, 17px);
  color: #555;
  margin-bottom: 26px;
}

.btn {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
}

.hero-image img {
  border-radius: 16px;
}

/* Mobile hero */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }
}

/* =======================
   SECTIONS
======================= */
.section {
  padding: clamp(40px, 6vw, 70px) 0;
}

.section.light {
  background: #f9fafb;
}

/* =======================
   GRID & CARDS
======================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* Responsive grid */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* =======================
   ABOUT
======================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.about-grid img {
  border-radius: 16px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =======================
   FAQ
======================= */
.faq-item {
  margin-bottom: 24px;
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* =======================
   FOOTER
======================= */
.footer {
  background: #111;
  color: #ccc;
  padding: 36px 16px;
  text-align: center;
}

.footer .small {
  font-size: 13px;
  color: #888;
}
/* =======================
   MOBILE LANDING STYLE
======================= */
@media (max-width: 768px) {

  body {
    background: #000;
    color: #fff;
  }

  /* HEADER */
  .header {
    background: #000;
    border-bottom: 1px solid #222;
  }

  .logo {
    color: #facc15;
  }

  nav a {
    color: #f43f5e;
    font-size: 13px;
  }

  /* HERO */
  .hero {
    background: #000;
    padding: 48px 0 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 15px;
    color: #d1d5db;
    margin-bottom: 22px;
  }

  .btn {
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
  }

  /* CTA NOTE TEXT */
  .hero-text small,
  .hero-text .note {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: #f87171;
  }

  /* HERO IMAGE / BANNER */
  .hero-image {
    margin-top: 20px;
  }

  .hero-image img {
    border-radius: 12px;
  }

  /* SECTION BACKGROUND */
  .section,
  .section.light {
    background: #000;
  }

  /* CARD */
  .card {
    background: #111;
    color: #e5e7eb;
  }

  .card p {
    color: #9ca3af;
  }

  /* FOOTER */
  .footer {
    background: #000;
    border-top: 1px solid #222;
  }
}
