/* === VARIABLES === */
:root {
  --green: #048816;
  --green-dark: #036b12;
  --red-border: #811d1d;
  --text-dark: #373737;
  --text-gray: #666666;
  --text-light: #b8b8be;
  --white: #ffffff;
  --bg-light: #f9f9f9;
  --border-light: #d9d9d9;
  --max-width: 1200px;
  --section-gap: 80px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

.btn--primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.header__logo img { height: 40px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero__content {
  position: relative;
  max-width: 560px;
  color: var(--white);
}
.hero__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === SECTIONS === */
.section {
  padding: var(--section-gap) 0;
}
.section--center {
  background: var(--white);
  text-align: center;
}
.section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.section__title--left { text-align: left; }
.section__body {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.section__body a {
  color: var(--green);
  text-decoration: underline;
}

/* === SPLIT LAYOUT === */
.split {
  display: flex;
  align-items: center;
  gap: 64px;
}
.split__text { flex: 1; }
.split__text .section__body { margin: 0 0 16px; max-width: none; }
.split__image {
  flex: 0 0 280px;
  max-width: 280px;
}
.split__image img {
  width: 100%;
  border-radius: 8px;
}
.section--split { background: var(--bg-light); }
.section--split-reverse { background: var(--white); }
.section--split-reverse .split { flex-direction: row-reverse; }

/* === BANNER 112 === */
.banner-112 {
  background: var(--white);
  padding: 32px 40px;
}
.banner-112 .container {
  border: 2px solid var(--red-border);
  border-radius: 8px;
  padding: 20px 40px;
  text-align: center;
}
.banner-112 p {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--red-border);
}

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 20px; }
.faq__question {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.faq__answer {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.6;
}
.faq__answer a { color: var(--green); text-decoration: underline; }

/* === CARDS === */
.section--cards { background: var(--white); }
.cards {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.card {
  flex: 1;
  max-width: 400px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.card__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.5;
}
.card__logo {
  height: 48px;
  object-fit: contain;
}
.card__store img {
  height: 52px;
  object-fit: contain;
}

/* === FOOTER === */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo img { height: 36px; }
.footer__nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}
.footer__nav a:hover { color: var(--green); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header { padding: 12px 20px; }
  .hero { padding: 60px 20px; min-height: 420px; }

  .split { flex-direction: column !important; gap: 32px; }
  .split__image { flex: none; max-width: 100%; }

  .cards { flex-direction: column; align-items: center; }
  .card { max-width: 100%; }

  .banner-112 { padding: 24px 20px; }
  .banner-112 .container { padding: 16px 20px; }

  .footer__inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer__nav { gap: 20px; flex-wrap: wrap; justify-content: center; }
}
