@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: rgba(6, 28, 10, 0.82);
  --green-accent: #1D6D00;
  --green-hover: #128D0B;
  --header-bg: rgba(0, 0, 0, 0.95);
  --card-bg: #FFFCFC;
  --btn-bg: #E9E6E6;
  --text-light: #E2E2E2;
  --white: #FFFFFF;
  --black: #000000;
  --max-width: 1400px;
  --grain-gold: #f0c040;
  --grain-amber: #d4a843;
  --bg-deep: #1a3d12;
}

html { scroll-behavior: smooth; min-height: 100%; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
  background-color: var(--bg-deep);
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: #1a4a12;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('../images/bg-field.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

body::after {
  display: none;
}

/* Текст поверх фото */
.home-hero h1,
.home-hero p,
.section-title h2,
.hero h1,
.hero h2,
.hero p,
.about-section h2,
.about-content,
.features-section h2,
.production-section h2,
.features-section,
.production-section {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #121212;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  flex: 0 0 auto;
  min-width: 140px;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 2px;
}

.logo-text {
  line-height: 1.2;
}

.logo:hover { color: var(--green-hover); }

.main-nav { flex: 1; display: flex; justify-content: center; min-width: 0; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  max-width: none;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav li {
  position: relative;
  flex: 0 0 auto;
}

.main-nav a {
  color: #fff !important;
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  padding: 11px 28px;
  min-width: 100px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.25s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.main-nav a::before { display: none; }

.main-nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #fff !important;
  transform: none;
}

.main-nav a.active {
  color: #fff !important;
  background: linear-gradient(135deg, #1a7a0a, #22a312) !important;
  border: 1.5px solid transparent !important;
  box-shadow: 0 4px 16px rgba(26, 122, 10, 0.35);
  font-weight: 600;
}

.main-nav a.active::before { display: none; }

.header-phone {
  flex: 0 0 20%;
  text-align: right;
}

.header-phone a {
  color: var(--white);
  font-size: 16px;
  transition: color 0.3s;
}

.header-phone a:hover { color: var(--green-hover); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-accent);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  background: transparent;
  padding: 70px 20px 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
}

.hero::before { display: none; }

.hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1, .hero h2 {
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  padding: 0;
  margin: 0 auto 20px;
  line-height: 1.2;
  text-align: center;
}

.hero p {
  font-size: 18px;
  color: var(--white);
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

/* Products grid */
.products-section {
  background: transparent;
  padding: 50px 20px;
  position: relative;
}

.products-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 380px;
  background: #fff;
  border-radius: 50px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.product-card::before { display: none; }

.product-card > * { position: relative; z-index: 1; }

.product-card img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.product-card h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.product-card .desc {
  font-size: 16px;
  color: var(--black);
  letter-spacing: 0.5px;
  padding: 0 10px;
  margin-bottom: 24px;
}

.product-card .desc p { margin-bottom: 12px; }

.product-card-meta {
  width: 100%;
  margin-bottom: 12px;
}

.product-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-accent);
  background: rgba(26, 122, 10, 0.1);
  border: 1px solid rgba(26, 122, 10, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.product-pricing {
  text-align: center;
  margin: 0 10px 20px;
}

.price-badge.promo {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #e53935;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-accent);
}

.price-negotiable {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-accent);
  padding: 6px 0 2px;
}

.product-negotiable-check {
  display: block;
  margin-bottom: 14px;
}

.price-current small {
  font-size: 14px;
  font-weight: 600;
}

.price-old {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
}

.price-volume {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.price-volume .vol-disc {
  color: var(--green-accent);
  font-weight: 600;
}

.order-price-info {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(26, 122, 10, 0.08);
  border: 1px solid rgba(26, 122, 10, 0.18);
  font-size: 14px;
  line-height: 1.5;
  color: #222;
}

.order-price-info.hidden { display: none; }

.price-old-inline {
  text-decoration: line-through;
  color: #888;
}

.address-notice {
  margin: 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 252, 252, 0.95);
  border: 1px solid rgba(26, 122, 10, 0.18);
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.pickup-notice {
  margin: 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.25);
  color: #8b1a12;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.contacts-info-section {
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.contacts-phones-block {
  background: rgba(255, 252, 252, 0.95);
  border-radius: 24px;
  padding: 28px 32px;
  color: #111;
  margin-bottom: 16px;
}

.contacts-phones-block h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.contacts-phones-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-phone-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 16px 24px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contacts-phone-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contacts-phone-row dt {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.contacts-phone-row dt a {
  color: #1a7a0a;
  text-decoration: none;
}

.contacts-phone-row dt a:hover {
  text-decoration: underline;
}

.contacts-phone-row dd {
  margin: 0;
  font-size: 17px;
  color: #333;
}

.contacts-address {
  margin: 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 252, 252, 0.95);
  border: 1px solid rgba(26, 122, 10, 0.18);
  color: #222;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .contacts-phone-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.requisites-block {
  background: rgba(255, 252, 252, 0.95);
  border-radius: 24px;
  padding: 28px 32px;
  color: #111;
  margin-bottom: 16px;
}

.requisites-block h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.requisites-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 24px;
  margin: 0;
}

.requisites-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  align-items: start;
}

.requisites-list dt {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #666;
}

.requisites-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.requisites-list a {
  color: var(--green-accent);
}

.no-products {
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 40px 20px;
  width: 100%;
}

.btn-order {
  display: inline-block;
  background: #e9e6e6;
  color: #1a1a1a;
  border: 2px solid var(--green-accent);
  padding: 13px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-order:hover {
  background: var(--green-accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* Map + Form */
.contact-block {
  background: transparent;
  padding: 50px 20px;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.map-wrap {
  flex: 1 1 52%;
  min-width: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.order-form-wrap {
  flex: 1 1 42%;
  min-width: 300px;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 36px 32px;
  margin-left: 0;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  position: relative;
  overflow: hidden;
}

.order-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a7a0a, #4caf50, #1a7a0a);
  background-size: 200% 100%;
  animation: formBar 4s linear infinite;
}

@keyframes formBar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.order-form h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1a7a0a;
  background: rgba(26, 122, 10, 0.08);
  border: 1px solid rgba(26, 122, 10, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.form-note::before {
  content: '✓';
  font-size: 11px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group label .req { color: #e53935; font-weight: 700; }

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 2px solid #eef0ee;
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  background: #f8faf8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input[type="number"] {
  -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  height: 50px;
  cursor: pointer;
  appearance: none;
  background-color: #f8faf8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a7a0a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
}

.form-input-suffix {
  position: relative;
}

.form-input-suffix input {
  width: 100%;
  box-sizing: border-box;
  padding-right: 44px;
}

.form-input-suffix .input-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 600;
  color: #1a7a0a;
  pointer-events: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #d0ddd0;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a7a0a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 122, 10, 0.12);
  transform: translateY(-1px);
}

.form-group select.product-selected,
.form-group select:focus {
  outline: none;
  border-color: #1a7a0a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 122, 10, 0.12);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.form-checkbox input {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.form-checkbox input:checked {
  background: linear-gradient(135deg, #1a7a0a, #2ea015);
  border-color: #1a7a0a;
}

.form-checkbox input:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.form-checkbox a {
  color: #1a7a0a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1a7a0a 0%, #2ea015 50%, #1a7a0a 100%);
  background-size: 200% auto;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(26, 122, 10, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 122, 10, 0.45);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(26, 122, 10, 0.3);
}

.form-message {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  display: none;
}

.form-message.success {
  color: #1a7a0a;
  background: rgba(26, 122, 10, 0.08);
  border: 1px solid rgba(26, 122, 10, 0.2);
  display: block;
}

.form-message.error {
  color: #c62828;
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.2);
  display: block;
}

body.phone-confirm-open {
  overflow: hidden;
}

.phone-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.phone-confirm-modal[hidden] {
  display: none !important;
}

.phone-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 18, 0.48);
}

.phone-confirm-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(20, 40, 16, 0.22);
  text-align: center;
}

.phone-confirm-dialog h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1c2a18;
}

.phone-confirm-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #4d5b48;
}

.phone-confirm-number {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a7a0a;
}

.phone-confirm-actions {
  display: flex;
  gap: 10px;
}

.phone-confirm-btn {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.phone-confirm-btn--secondary {
  background: #eef3eb;
  color: #2c3a28;
}

.phone-confirm-btn--secondary:hover {
  background: #e2ebe0;
}

.phone-confirm-btn--primary {
  background: linear-gradient(135deg, #1a7a0a 0%, #2ea015 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(26, 122, 10, 0.28);
}

.phone-confirm-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26, 122, 10, 0.36);
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.72);
  padding: 40px 20px 0;
}

.footer-company {
  text-align: center;
  margin-bottom: 20px;
}

.footer-company h2 {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
}

.footer-divider {
  width: 50%;
  height: 1px;
  background: var(--black);
  margin: 15px auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto 30px;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  background: var(--header-bg);
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 14px;
  color: var(--white);
}

.footer-bottom a:hover { color: var(--green-hover); }

/* Homepage sections */
.about-section,
.features-section,
.production-section {
  background: transparent;
  padding: 60px 20px;
  color: var(--white);
}

.about-section h2,
.features-section h2,
.production-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--white);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.about-content p { margin-bottom: 16px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-item {
  background: var(--card-bg);
  background-image: url('../images/bg-pattern.svg');
  background-size: 220px;
  background-repeat: no-repeat;
  background-position: right -30px bottom -30px;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-bg);
  opacity: 0.92;
  border-radius: 30px;
}

.feature-item > * { position: relative; z-index: 1; }

.feature-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 15px;
  color: var(--black);
}

.home-hero {
  background: transparent;
  padding: 100px 20px 70px;
  position: relative;
}

.home-hero::before { display: none; }

.home-hero > * { position: relative; z-index: 1; }

.home-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto 24px;
  line-height: 1.4;
  text-align: center;
}

.home-hero p {
  font-size: 18px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.section-title {
  background: transparent;
  padding: 60px 20px 20px;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}

/* Responsive */
@media (max-width: 921px) {
  .header-phone { display: none; }
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    padding: 0;
  }

  .main-nav.open { display: flex; }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    padding: 12px;
    gap: 8px;
    max-width: none;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
  }

  .main-nav li { flex: none; width: 100%; }

  .main-nav a {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  }

  .main-nav a.active {
    color: #fff !important;
    background: linear-gradient(135deg, #1a7a0a, #22a312) !important;
    border-color: transparent !important;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    margin-top: 0;
    background: transparent;
  }

  .btn-header {
    min-width: 100px;
    flex: 1;
  }

  .hero h1, .hero h2 { font-size: 40px; padding-left: 0; }
  .hero p { padding-left: 0; }

  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
    border-radius: 30px;
    padding: 30px 20px;
  }

  .product-card::before { border-radius: 30px; }
  .product-card h2 { font-size: 25px; }

  .order-form-wrap {
    margin-left: 0;
    margin-top: 0;
    border-radius: 24px;
    padding: 28px 22px;
  }

  .footer-columns { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 544px) {
  .hero h1, .hero h2 { font-size: 30px; }
  .home-hero h1 { font-size: 26px; }
}
