@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --bg-dark-green: #0f2418;
  --bg-olive: #2d3b24;
  --bg-olive-light: #3a4a2e;
  --text-white: #ffffff;
  --text-muted: #d4e4cc;
  --neon-lime: #c8ff4a;
  --lime-accent: #a8e635;
  --gradient-border: linear-gradient(135deg, #c8ff4a, #7cb518, #e8ff6a, #5a8a12);
  --shadow-glow: 0 8px 32px rgba(200, 255, 74, 0.15);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-green);
  color: var(--text-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--neon-lime);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--lime-accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-olive);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--neon-lime);
  margin: 1rem auto 0;
}

.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5em;
  line-height: 0.8;
  padding-right: 0.1em;
  color: var(--neon-lime);
  font-weight: 700;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 36, 24, 0.97);
  border-bottom: 1px solid rgba(200, 255, 74, 0.2);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--neon-lime);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.header-contact p,
.header-contact a {
  font-size: 0.85rem;
  margin: 0;
  white-space: nowrap;
}

.header-contact p {
  color: var(--text-muted);
}

.header-contact .header-address {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--neon-lime);
  transition: 0.3s;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark-green);
  padding: 30px 20px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-menu nav a {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 255, 74, 0.15);
}

.mobile-contact p,
.mobile-contact a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.mobile-contact p { color: var(--text-muted); }

/* Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 36, 24, 0.4), rgba(15, 36, 24, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay h1 {
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--neon-lime);
  border: 2px solid var(--neon-lime);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 4px;
}

.btn:hover {
  background: var(--neon-lime);
  color: var(--bg-dark-green);
}

.btn-filled {
  background: var(--neon-lime);
  color: var(--bg-dark-green);
}

.btn-filled:hover {
  background: var(--lime-accent);
  border-color: var(--lime-accent);
}

/* Strengths - staggered horizontal cards */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: flex-end;
  padding: 20px 0;
}

.strength-card {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 30px 24px;
  background: #f5f7f0;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1;
}

.strength-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: var(--gradient-border);
  z-index: -1;
}

.strength-card:nth-child(1) { transform: translateY(-20px); }
.strength-card:nth-child(2) { transform: translateY(10px); }
.strength-card:nth-child(3) { transform: translateY(-30px); }
.strength-card:nth-child(4) { transform: translateY(5px); }
.strength-card:nth-child(5) { transform: translateY(-15px); }

.strength-card:hover {
  transform: translateY(-5px) !important;
}

.strength-card h3 {
  color: #0f2418;
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 0.95rem;
  color: #1a1a1a;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-olive-light);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 74, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 12px;
  color: var(--neon-lime);
}

.service-card-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neon-lime);
  margin-bottom: 16px;
}

/* Advantages / Stats */
.advantages-block {
  background: var(--bg-olive);
  padding: 50px 40px;
  border-radius: 8px;
  border-left: 4px solid var(--neon-lime);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-olive-light);
  border-radius: 8px;
  border: 1px solid rgba(200, 255, 74, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--neon-lime);
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Forms */
.form-section {
  background: var(--bg-olive);
  padding: 60px 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-olive-light);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(200, 255, 74, 0.25);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark-green);
  border: 1px solid rgba(200, 255, 74, 0.3);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-lime);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(200, 255, 74, 0.15);
  border: 1px solid var(--neon-lime);
  color: var(--neon-lime);
}

.form-message.error {
  display: block;
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid #ff6464;
  color: #ff6464;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 255, 74, 0.2);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--neon-lime);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
  color: var(--neon-lime);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-content.reverse {
  direction: rtl;
}

.about-content.reverse > * {
  direction: ltr;
}

.about-img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(200, 255, 74, 0.3);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission sticks */
.mission-sticks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.mission-stick {
  flex: 1 1 180px;
  max-width: 220px;
  padding: 24px 20px;
  background: var(--bg-olive-light);
  border-top: 4px solid var(--neon-lime);
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.mission-stick h4 {
  color: var(--neon-lime);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.mission-stick p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--neon-lime);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--neon-lime);
  border-radius: 50%;
  border: 3px solid var(--bg-dark-green);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neon-lime);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
}

/* Services detail */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.guarantee-item {
  padding: 24px;
  background: var(--bg-olive-light);
  border-radius: 8px;
  border: 1px solid rgba(200, 255, 74, 0.2);
}

.guarantee-item h4 {
  color: var(--neon-lime);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.top-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.advantage-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-olive-light);
  border-radius: 8px;
  align-items: flex-start;
}

.advantage-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--neon-lime);
  font-weight: 700;
  min-width: 40px;
}

/* Bonus program */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-olive-light);
  border-radius: 8px;
  border: 1px solid rgba(200, 255, 74, 0.2);
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bonus-item h4 {
  color: var(--neon-lime);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

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

.contact-info-block {
  padding: 30px;
  background: var(--bg-olive-light);
  border-radius: 8px;
}

.contact-info-block h3 {
  color: var(--neon-lime);
  margin-bottom: 20px;
}

.contact-info-block p,
.contact-info-block a {
  margin-bottom: 12px;
  display: block;
}

.contact-info-block p {
  color: var(--text-muted);
}

/* Legal pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.legal-content h1 {
  margin-bottom: 2rem;
  color: var(--neon-lime);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--lime-accent);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-align: justify;
}

/* Footer */
.site-footer {
  background: var(--bg-olive);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(200, 255, 74, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--neon-lime);
}

.footer-contact p,
.footer-contact a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-contact p { color: var(--text-muted); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  font-size: 0.9rem;
}

.footer-legal {
  border-top: 1px solid rgba(200, 255, 74, 0.15);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--neon-lime);
}

.footer-company-info {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.text-content {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.text-content p {
  margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-nav,
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .strength-card:nth-child(n) {
    transform: none;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-content.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .form-wrapper {
    padding: 24px;
  }

  .page-banner {
    height: 45vh;
    min-height: 300px;
  }

  .strengths-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .strength-card {
    max-width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
}
