@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Baloo+2:wght@600;700;800&display=swap');

:root {
  --green-dark: #1b5e20;
  --green-mid: #43a047;
  --green-light: #a4d65a;
  --green-pale: #e8f5e9;
  --orange: #f57c00;
  --orange-bright: #ff9800;
  --gold: #ffc107;
  --gold-light: #fff3c4;
  --purple: #7b1fa2;
  --purple-light: #e1bee7;
  --sky: #4fc3f7;
  --sky-pale: #e1f5fe;
  --sand: #fff8e7;
  --brown: #5d4037;
  --text-dark: #1a2e1a;
  --text-mid: #4a5f4a;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(27, 94, 32, 0.12);
  --shadow-orange: 0 8px 24px rgba(245, 124, 0, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --font-body: 'Nunito', sans-serif;
  --font-display: 'Baloo 2', cursive;
  --nav-h: 72px;
  --logo-h: 50px;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body.landing-page {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.landing-page a { text-decoration: none; transition: 0.25s ease; }
body.landing-page ul { list-style: none; padding: 0; margin: 0; }
body.landing-page img { max-width: 100%; height: auto; display: block; }
body.landing-page h1, body.landing-page h2, body.landing-page h3, body.landing-page h4 { margin: 0 0 12px; line-height: 1.25; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 3px solid var(--green-mid);
  box-shadow: 0 2px 12px rgba(27, 94, 32, 0.08);
}

.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}

.lp-logo { display: flex; align-items: center; flex-shrink: 0; }

.lp-logo img {
  width:auto !important; 
  height:50px !important; 
  object-fit: contain;
}

.lp-menu { display: flex; align-items: center; gap: 4px; }

.lp-menu a {
  padding: 8px 14px;
  font-weight: 700; font-size: 14px;
  color: var(--text-mid);
  border-radius: 8px;
}

.lp-menu a:hover, .lp-menu a.active {
  color: var(--white);
  background: var(--green-mid);
}

.lp-menu .lp-cta {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: var(--white) !important;
  margin-left: 10px;
  box-shadow: var(--shadow-orange);
}

.lp-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.lp-toggle span { display: block; width: 26px; height: 3px; background: var(--green-dark); margin: 5px 0; border-radius: 2px; }

.lp-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white);
  padding: calc(var(--nav-h) + 16px) 24px 40px;
  overflow-y: auto;
}
.lp-mobile.open { display: block; }
.lp-mobile a {
  display: block; padding: 14px 0; font-size: 17px; font-weight: 700;
  color: var(--text-dark); border-bottom: 2px dashed var(--green-light);
}

/* ── Hero ── */
#home.lp-hero {
  position: relative;
  min-height: 88vh;
  margin-top: var(--nav-h);
  background: url('../images/banner_plant.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
}

.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(27, 94, 32, 0.88) 0%, rgba(27, 94, 32, 0.5) 50%, rgba(123, 31, 162, 0.35) 100%);
}

.lp-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 56px 24px;
  width: 100%;
}

.lp-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--brown);
  font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.lp-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  max-width: 620px;
  margin-bottom: 16px;
}

.lp-hero-inner .lead {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255,255,255,0.92);
  max-width: 500px;
  margin-bottom: 10px;
  font-weight: 600;
}

.lp-hero-inner .sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 28px;
}

.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lp-btn {
  display: inline-block;
  padding: 12px 26px;
  font-weight: 800; font-size: 14px;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: 0.25s ease;
}

.lp-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange-bright));
  color: var(--brown);
  box-shadow: var(--shadow-orange);
}
.lp-btn-gold:hover { transform: translateY(-2px); color: var(--brown); }

.lp-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.lp-btn-outline:hover { background: var(--white); color: var(--green-dark); }

.lp-btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.lp-btn-green:hover { background: var(--green-dark); color: var(--white); }

/* ── Strip ── */
.lp-strip { background: var(--green-dark); }

.lp-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}

.lp-strip-item {
  padding: 24px 28px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 14px; align-items: flex-start;
}

.lp-strip-item:last-child { border-right: none; }
.lp-strip-item .num { font-family: var(--font-display); font-size: 28px; color: var(--gold); line-height: 1; flex-shrink: 0; }
.lp-strip-item h3 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.lp-strip-item p { font-size: 13px; opacity: 0.85; margin: 0; }

/* ── Section common ── */
.lp-section { padding: 72px 0; }

.lp-head { margin-bottom: 40px; }
.lp-head.center { text-align: center; }
.lp-head.center p { max-width: 600px; margin: 10px auto 0; color: var(--text-mid); }

.lp-eyebrow {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold-light);
  color: var(--orange);
  font-weight: 800; font-size: 11px;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.lp-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--green-dark);
}

/* ── About: split + advantage cards ── */
.lp-section-about { background: var(--green-pale); }

.lp-split {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.lp-split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--green-mid);
}

.lp-split-media img { width: 100%; }

.lp-split-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--brown);
  font-weight: 800; font-size: 12px;
  border-radius: 6px;
}

.lp-split-body h2 { margin-bottom: 16px; }
.lp-split-body p { color: var(--text-mid); margin-bottom: 14px; font-size: 15px; }

.lp-adv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-adv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--green-mid);
}

.lp-adv-card:nth-child(2) { border-bottom-color: var(--orange-bright); }
.lp-adv-card:nth-child(3) { border-bottom-color: var(--purple); }

.lp-adv-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.lp-adv-card h3 { font-size: 16px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.lp-adv-card p { font-size: 14px; color: var(--text-mid); margin: 0; }

/* ── Services: 4-column row ── */
.lp-section-services { background: var(--sand); }

.lp-svc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-svc-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.lp-svc-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-orange); }

.lp-svc-item img { width: 48px; height: 48px; margin: 0 auto 14px; }
.lp-svc-item h3 { font-size: 15px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.lp-svc-item p { font-size: 13px; color: var(--text-mid); margin: 0; line-height: 1.5; }

/* ── Games: detail + sticky poster ── */
.lp-section-games { background: var(--white); }

.lp-game-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.lp-game-intro {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--green-light);
}

.lp-game-block {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
}

.lp-game-block h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.lp-game-block ul li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}

.lp-game-block ul li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--orange-bright);
  font-weight: 800;
}

.lp-game-block.lp-game-warning {
  background: var(--gold-light);
  border-left-color: var(--orange-bright);
}

.lp-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.lp-game-side { position: sticky; top: calc(var(--nav-h) + 24px); }

.lp-game-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--green-mid);
}

.lp-game-poster img { width: 100%; }

.lp-game-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--brown);
  font-weight: 800; font-size: 12px;
  border-radius: 6px;
}

/* ── Team: 3-column cards ── */
.lp-section-team { background: linear-gradient(180deg, var(--sky-pale), var(--green-pale)); }

.lp-team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-team-box {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.lp-team-box:hover { transform: translateY(-4px); }

.lp-team-box img { width: 100%; height: 160px; object-fit: cover; }

.lp-team-box-body { padding: 20px; }
.lp-team-box-body h3 { font-size: 16px; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.lp-team-box-body p { font-size: 14px; color: var(--text-mid); margin: 0; }

/* ── Contact: card grid only ── */
.lp-section-contact { background: var(--white); }

.lp-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-contact-card {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border-top: 4px solid var(--green-mid);
}

.lp-contact-card:nth-child(2) { border-top-color: var(--orange-bright); }
.lp-contact-card:nth-child(3) { border-top-color: var(--purple); }
.lp-contact-card:nth-child(4) { border-top-color: var(--sky); }
.lp-contact-card:nth-child(5) { border-top-color: var(--gold); }
.lp-contact-card:nth-child(4),
.lp-contact-card:nth-child(5) { grid-column: span 1; }

.lp-contact-card .ico { font-size: 30px; display: block; margin-bottom: 10px; }
.lp-contact-card h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-mid); font-weight: 700; margin-bottom: 8px;
}
.lp-contact-card p { font-size: 14px; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.45; }
.lp-contact-card a { color: var(--green-dark); }
.lp-contact-card a:hover { color: var(--orange); }

/* ── Footer ── */
body.landing-page .site-footer {
  background: var(--green-dark);
  margin-top: 0;
  color: #c8e6c9;
}

body.landing-page .footer-payment {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0; text-align: center;
}
body.landing-page .footer-payment h3 { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
body.landing-page .footer-payment img { max-width: 280px; margin: 0 auto; }

body.landing-page .footer-bottom {
  background: #0d3d12;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
body.landing-page .footer-bottom .row {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
body.landing-page .footer-bottom p { color: #81c784; font-size: 14px; margin: 0; }
body.landing-page .footer-legal { display: flex; gap: 20px; }
body.landing-page .footer-legal a { color: #a5d6a7; font-size: 14px; }
body.landing-page .footer-legal a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .lp-menu { display: none; }
  .lp-toggle { display: block; }
  .lp-strip-grid { grid-template-columns: 1fr; }
  .lp-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .lp-split { grid-template-columns: 1fr; gap: 28px; }
  .lp-adv-cards { grid-template-columns: 1fr; }
  .lp-svc-row { grid-template-columns: repeat(2, 1fr); }
  .lp-game-layout { grid-template-columns: 1fr; }
  .lp-game-side { position: static; max-width: 320px; margin: 0 auto 32px; order: -1; }
  .lp-game-layout { display: flex; flex-direction: column; }
  .lp-team-row { grid-template-columns: 1fr; }
  .lp-contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .lp-svc-row { grid-template-columns: 1fr; }
  body.landing-page .footer-bottom .row { flex-direction: column; gap: 12px; text-align: center; }
  body.landing-page .footer-legal { justify-content: center; }
}
