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

:root {
  --bg-dark-green: #1a3d2e;
  --bg-darker: #0f2818;
  --bg-black: #0a0a0a;
  --text-white: #f5f5f0;
  --accent-lime: #a8e063;
  --accent-lime-dark: #8bc34a;
  --accent-lime-light: #c5f082;
  --gradient-border: linear-gradient(135deg, #a8e063, #4caf50, #a8e063);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(168, 224, 99, 0.15);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --header-height: 80px;
  --transition: 0.3s ease;
}

*,
*::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(--accent-lime);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--accent-lime);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
  font-size: 1.1rem;
}

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

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-darker);
  border-bottom: 2px solid var(--accent-lime);
  height: var(--header-height);
}

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

.header__logo img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--accent-lime);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.header__nav a:hover,
.header__nav a.active {
  color: var(--accent-lime);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-size: 0.85rem;
}

.header__contact p,
.header__contact a,
.header__contact span {
  white-space: nowrap;
  margin: 0;
}

.header__contact p {
  color: var(--text-white);
}

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

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

.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--accent-lime);
  border-radius: 2px;
  transition: var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== BANNER ===== */
.banner {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

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

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

.banner__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--text-white);
  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: var(--accent-lime);
  color: var(--bg-darker);
  border: 2px solid var(--accent-lime);
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn--outline {
  background: transparent;
  color: var(--accent-lime);
}

.btn--outline:hover {
  background: var(--accent-lime);
  color: var(--bg-darker);
}

/* ===== STRENGTHS (staggered cards) ===== */
.strengths {
  background: var(--bg-darker);
}

.strengths__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  padding: 20px 0;
}

.strength-card {
  flex: 0 1 260px;
  position: relative;
  padding: 3px;
  border-radius: 16px;
  background: var(--gradient-border);
  box-shadow: var(--shadow-strong);
  transition: transform var(--transition);
}

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

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

.strength-card__inner {
  background: var(--bg-black);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
}

.strength-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--accent-lime);
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
}

.strength-card__icon svg {
  width: 44px;
  height: 44px;
}

.strength-card h3 {
  font-size: 1.4rem;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.service-card {
  background: var(--bg-black);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--accent-lime);
  box-shadow: var(--shadow-strong);
}

.service-card__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  font-size: 1.5rem;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

.service-card__body p {
  flex: 1;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card__price {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--accent-lime);
  margin-bottom: 16px;
}

.service-card__price small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== ADVANTAGES / STATS ===== */
.advantages {
  background: var(--bg-black);
}

.advantages__content {
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  border: 2px solid var(--accent-lime);
  border-radius: 12px;
  background: var(--bg-darker);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-lime);
  font-weight: 700;
}

.stat-item__label {
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* ===== FORMS ===== */
.form-section {
  background: var(--bg-darker);
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-black);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--accent-lime);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-lime);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-darker);
  border: 1px solid var(--accent-lime);
  border-radius: 6px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-lime-light);
  box-shadow: 0 0 0 3px rgba(168, 224, 99, 0.2);
}

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

.form-message {
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 16px;
  display: none;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: rgba(168, 224, 99, 0.15);
  border: 1px solid var(--accent-lime);
  color: var(--accent-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: 1px solid var(--accent-lime);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-black);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-lime);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 24px 18px;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

.about-content__text p {
  margin-bottom: 16px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--accent-lime);
}

.mission-sticks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 50px 0;
}

.mission-stick {
  flex: 1 1 220px;
  max-width: 280px;
  background: var(--gradient-border);
  padding: 3px;
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
}

.mission-stick__inner {
  background: var(--bg-black);
  padding: 28px 20px;
  border-radius: 10px;
  text-align: center;
}

.mission-stick__inner h3 {
  color: var(--accent-lime);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

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

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

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

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-lime);
  font-weight: 700;
}

.timeline-item p {
  margin-top: 8px;
}

/* ===== SERVICES PAGE ===== */
.guarantees {
  background: var(--bg-black);
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.guarantee-item {
  padding: 24px;
  border: 1px solid var(--accent-lime);
  border-radius: 10px;
  background: var(--bg-darker);
}

.guarantee-item h3 {
  color: var(--accent-lime);
  margin-bottom: 10px;
}

.how-to-order ol {
  padding-left: 24px;
  max-width: 700px;
  margin: 20px auto;
}

.how-to-order li {
  margin-bottom: 12px;
}

.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-black);
  border-radius: 10px;
  border-left: 4px solid var(--accent-lime);
}

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

.bonus-program {
  background: var(--bg-darker);
}

.bonus-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.bonus-icon {
  text-align: center;
  flex: 0 1 150px;
}

.bonus-icon__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-black);
  border: 2px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 2rem;
}

.bonus-icon p {
  font-size: 0.9rem;
}

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-black);
  border-radius: 10px;
  border: 1px solid var(--accent-lime);
}

.contact-info__item h3 {
  color: var(--accent-lime);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--accent-lime);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__logo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--accent-lime);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer__nav a {
  color: var(--text-white);
  white-space: nowrap;
}

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

.footer__contact p,
.footer__contact a {
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

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

.footer__legal {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(168, 224, 99, 0.3);
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer__legal-links a {
  color: var(--accent-lime);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 0;
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--accent-lime);
  margin-bottom: 30px;
}

.legal-page h2 {
  font-size: 1.6rem;
  color: var(--accent-lime);
  margin: 30px 0 15px;
}

.legal-page p {
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  margin-bottom: 8px;
}

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

.mobile-menu.active {
  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: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(168, 224, 99, 0.2);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__contact {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__nav {
    display: none;
  }

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

  .strengths__grid {
    flex-direction: column;
    align-items: center;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }
}

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

  .banner {
    height: 280px;
  }

  .form-wrapper {
    padding: 24px;
  }

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