:root {
  --green: #3fa142;
  --green-light: #7ec983;
  --green-pale: #eaf6ea;
  --ink: #1a1a1a;
  --gray: #5c5c5c;
  --white: #ffffff;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { width: 44px; height: 44px; }

.brand-text { line-height: 1.2; }
.brand-text strong { display: block; font-size: 1.05rem; color: var(--ink); }
.brand-text span { display: block; font-size: 0.8rem; color: var(--gray); }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.2s;
}

nav a:hover { color: var(--green); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-pale), var(--white));
  padding: 72px 0 64px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ink);
}

.hero h1 span { color: var(--green); }

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 220px;
  height: 220px;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover { background: #35883a; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  margin-left: 12px;
}

.btn-outline:hover { background: var(--green-pale); }

/* Sections */
section { padding: 72px 0; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 48px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid img {
  border-radius: 16px;
  width: 100%;
}

.about-text h3 { margin-bottom: 14px; font-size: 1.4rem; }
.about-text p { margin-bottom: 14px; color: var(--gray); }

.badges {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.badge {
  background: var(--green-pale);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Workshops */
.workshops-bg { background: var(--green-pale); }

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.workshop-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.workshop-card .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.workshop-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.workshop-card p { color: var(--gray); font-size: 0.95rem; }

.price-box {
  background: var(--ink);
  color: var(--white);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.price-box .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-light);
}

.price-box .price small {
  font-size: 1rem;
  color: #ccc;
  font-weight: 400;
  display: block;
}

.price-box p { color: #ddd; max-width: 480px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--green-pale);
  border-radius: 16px;
  padding: 32px;
}

.contact-card h3 { margin-bottom: 20px; }

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.3rem;
  width: 32px;
}

.contact-item strong { display: block; font-size: 0.85rem; color: var(--gray); }
.contact-item span, .contact-item a { font-size: 1.05rem; font-weight: 600; text-decoration: none; }

.bank-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e2e2;
}

.bank-box h3 { margin-bottom: 20px; }

.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.bank-row:last-child { border-bottom: none; }
.bank-row span:first-child { color: var(--gray); }
.bank-row span:last-child { font-weight: 700; letter-spacing: 0.5px; }

/* Legal pages */
.legal { padding-top: 8px; }
.legal h1 { margin-bottom: 28px; }
.legal h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal p { margin-bottom: 12px; color: #333; }
.legal ul {
  margin: 0 0 14px 22px;
  color: #333;
}
.legal li { margin-bottom: 6px; }
.legal a { color: var(--green); }

/* Footer */
footer {
  background: var(--ink);
  color: #ccc;
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer a { text-decoration: none; color: #ccc; }
footer a:hover { color: var(--green-light); }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 800px) {
  nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-box { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}
