/* ===================================================
   ООО «ТК Свободный» — Stylesheet
   Strictly Aligned with Client Content Map
   Clean Light Botanical Modern Aesthetic
   =================================================== */

:root {
  /* Colors */
  --bg-page: #f8faf8;
  --bg-surface: #ffffff;
  --bg-subtle: #f2f6f3;
  --bg-subtle-hover: #e7efe9;
  
  /* Brand Greens (Logo Color Match: #44714a) */
  --brand-dark: #142216;
  --brand-forest: #2f4e34;
  --brand-green: #44714a;
  --brand-emerald: #44714a;
  --brand-primary-hover: #365b3c;
  --brand-light-green: #edf4ee;
  --brand-pink: #d946ef;
  --brand-pink-light: #fdf4ff;
  
  /* Text */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Borders & Shadows */
  --border-light: rgba(68, 113, 74, 0.22);
  --border-subtle: #e2ebe4;
  --shadow-sm: 0 2px 8px rgba(20, 34, 22, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 34, 22, 0.08);
  --shadow-lg: 0 16px 40px rgba(20, 34, 22, 0.12);
  --shadow-hover: 0 20px 48px rgba(20, 34, 22, 0.16);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

button, input, select, textarea {
  font: inherit;
}

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

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--tr-normal);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #44714a 0%, #365b3c 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(68, 113, 74, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #365b3c 0%, #28442c 100%);
  box-shadow: 0 8px 24px rgba(68, 113, 74, 0.38);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--brand-forest);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--tr-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link:hover {
  color: var(--brand-forest);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-emerald);
  transition: width var(--tr-fast);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-nav-footer {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--brand-dark);
  padding: 7px 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.phone-pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-emerald);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: all var(--tr-fast);
}

/* ==================== SECTIONS COMMON ==================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--brand-light-green);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-header .section-title:last-child {
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== 00. HERO SECTION (FULL SLIDE WITH BG) ==================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg-image-layer {
  position: absolute;
  inset: 0;
  background: url('assets/hero-greenhouse-bg.jpg') center center / cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 41, 30, 0.62) 0%, rgba(9, 23, 17, 0.88) 100%);
  z-index: 1;
}

.hero-container-full {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-content-center {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e2ede5;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: #6eb879;
  margin-bottom: 22px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-cta-group .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta-group .btn-outline:hover {
  background: #ffffff;
  color: var(--brand-dark);
  border-color: #ffffff;
}
/* ==================== 01. ABOUT ==================== */
.about-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.about-paragraphs-card {
  background: var(--bg-page);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}

.narrative-p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.narrative-p strong {
  color: var(--brand-dark);
}

.highlight-p {
  color: var(--brand-forest);
  font-weight: 600;
  border-left: 3px solid var(--brand-emerald);
  padding-left: 16px;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Строка из 4 цифр под текстом */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metrics-row .metric-box {
  background: var(--bg-page);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: transform var(--tr-fast);
}

.metrics-row .metric-box:hover {
  transform: translateY(-3px);
  border-color: var(--brand-emerald);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-emerald);
  margin-bottom: 6px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.4;
}

.metrics-extra-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.metric-pill {
  font-size: 13px;
  color: var(--brand-forest);
  background: var(--brand-light-green);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

.pill-bold {
  font-weight: 700;
}

/* Видеоплеер в блоке О компании */
.about-video-wrapper {
  width: 100%;
  margin-top: 26px;
  margin-bottom: 24px;
}

.about-video-card {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #08120a;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-ambient {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  filter: blur(32px) brightness(0.45);
  opacity: 0.8;
  transform: scale(1.1);
  pointer-events: none;
  z-index: 1;
}

.about-complex-video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 100% полное видео без малейшей обрезки */
  display: block;
}

.video-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14, 26, 17, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}

.video-live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #4ade80;
  animation: pulseDot 2s infinite ease-in-out;
}

/* Фотогалерея в блоке О компании */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 0;
}

.about-gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: all var(--tr-normal);
}

.about-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-green);
}

.about-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-gallery-item:hover .about-gallery-img {
  transform: scale(1.06);
}

/* ==================== 02. TECHNOLOGIES ==================== */
.tech-section {
  background: var(--bg-page);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.tech-card {
  background: var(--bg-surface);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}

.tech-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-green);
  background: var(--brand-light-green);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 14px;
  align-self: flex-start;
}

.tech-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.tech-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Фотогалерея в блоке технологий */
.tech-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.tech-gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: all var(--tr-normal);
}

.tech-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-green);
}

.tech-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-gallery-item:hover .tech-gallery-img {
  transform: scale(1.06);
}

.tech-closing-card {
  background: var(--bg-surface);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--brand-emerald);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.tech-closing-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.6;
}

/* ==================== 03. CATALOG ==================== */
.catalog-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-card-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 36px;
  box-shadow: var(--shadow-md);
  align-items: start;
}

.catalog-media-side {
  width: 100%;
}

.catalog-main-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid var(--border-subtle);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.catalog-zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(20, 34, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all var(--tr-fast);
  z-index: 2;
}

.catalog-main-img-box:hover .catalog-zoom-hint {
  background: var(--brand-green);
  transform: scale(1.1);
}

.catalog-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity var(--tr-fast);
}

.catalog-main-img-box:hover .catalog-main-img {
  transform: scale(1.03);
}

.catalog-badge-nl {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.catalog-gallery-thumbs {
  display: flex;
  gap: 10px;
  width: 100%;
}

.catalog-gallery-thumbs .thumb {
  flex: 1;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr-fast);
  background: #fbfbfa;
  box-shadow: var(--shadow-sm);
}

.catalog-gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-gallery-thumbs .thumb.active,
.catalog-gallery-thumbs .thumb:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.catalog-flower-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.catalog-material {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.variety-points-block {
  margin-bottom: 20px;
}

.block-mini-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variety-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.variety-points-list li {
  font-size: 14px;
  color: var(--text-main);
  position: relative;
  padding-left: 20px;
}

.variety-points-list li::before {
  content: '•';
  color: var(--brand-emerald);
  font-size: 20px;
  position: absolute;
  left: 4px;
  top: -2px;
}

.preparation-box {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.specs-table-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 24px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th {
  background: var(--bg-subtle);
  text-align: left;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-table td {
  padding: 10px 16px;
  font-size: 13px;
  border-top: 1px solid var(--border-subtle);
}

.specs-table td:first-child {
  color: var(--text-muted);
  width: 45%;
}

.specs-table td:last-child {
  color: var(--brand-dark);
  font-weight: 500;
}

/* ==================== 04. SEASONALITY ==================== */
.season-section {
  background: var(--bg-page);
}

.season-box {
  background: var(--bg-surface);
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.season-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.month-pill {
  padding: 14px 6px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.month-green {
  background: var(--brand-light-green);
  border-color: rgba(16, 185, 129, 0.3);
}

.month-pink {
  background: var(--brand-pink-light);
  border-color: rgba(217, 70, 239, 0.4);
}

.m-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-dark);
}

.m-state {
  font-size: 11px;
  font-weight: 600;
}

.month-green .m-state { color: var(--brand-green); }
.month-pink .m-state { color: var(--brand-pink); font-weight: 700; text-transform: uppercase; }

.m-note {
  font-size: 9px;
  font-weight: 700;
  background: var(--brand-pink);
  color: #ffffff;
  padding: 2px 5px;
  border-radius: var(--radius-pill);
}

.season-notice {
  background: var(--bg-page);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

/* ==================== 05. WHY US ==================== */
.why-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.why-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-page);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--tr-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-emerald);
  background: #ffffff;
}

.why-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.4);
  margin-bottom: 12px;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== 06. PRICING & DELIVERY ==================== */
.pricing-section {
  background: var(--bg-page);
}

.pricing-flex-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: flex-start;
}

.pricing-block-card,
.delivery-block-card {
  background: var(--bg-surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.block-title-sub {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.price-rows-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--tr-fast);
}

.price-row:hover {
  border-color: var(--brand-green);
  transform: translateX(4px);
}

.price-row.best-row {
  background: var(--brand-light-green);
  border-color: var(--brand-emerald);
}

.p-range {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--brand-dark);
}

.price-on-request-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: #f8faf7;
  border: 1px solid #e0ece2;
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.por-icon {
  font-size: 18px;
  line-height: 1.2;
}

.por-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-main);
}

.por-desc strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.del-timing {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-forest);
  margin-bottom: 14px;
}

.directions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.5;
}

.del-custom-note {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-page);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  line-height: 1.5;
}

.del-custom-note em {
  color: var(--brand-green);
  font-style: normal;
  font-weight: 600;
}

.payment-note-box {
  font-size: 13px;
  color: var(--brand-forest);
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

/* Form Card */
.form-card-body {
  background: var(--bg-surface);
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.form-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.form-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  outline: none;
  font-size: 14px;
  transition: all var(--tr-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-emerald);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.form-checkbox-row a {
  color: var(--brand-green);
  text-decoration: underline;
}

.form-status-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.form-status-msg.success {
  background: var(--brand-light-green);
  color: var(--brand-forest);
  border: 1px solid var(--brand-emerald);
}

/* ==================== 07. COOPERATION ==================== */
.cooperation-section {
  background: var(--bg-surface);
}

.coop-banner-card {
  background: linear-gradient(135deg, #2f4e34 0%, #162418 100%);
  color: #ffffff;
  padding: 56px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.section-tag-light {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #6eb879;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(110, 184, 121, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.coop-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 28px;
}

.audiences-list-5 {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.aud-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.coop-paragraph {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.6;
}

.coop-final-line {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #6eb879;
  margin-bottom: 32px;
}

.coop-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.coop-banner-card .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.coop-banner-card .btn-outline:hover {
  background: #ffffff;
  color: var(--brand-dark);
}

/* ==================== 08. CONTACTS ==================== */
.contacts-section {
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.contacts-wrapper-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-surface);
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.contacts-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-entry {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 16px;
}

.contact-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.entry-label {
  font-size: 13px;
  color: var(--text-muted);
  width: 35%;
}

.entry-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  text-align: right;
}

.company-name {
  color: var(--brand-green);
  font-size: 18px;
}

.phone-val a {
  color: var(--brand-forest);
}

.phone-val a:hover {
  color: var(--brand-emerald);
}

.messenger-btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.msg-link {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  color: #ffffff;
}

.msg-link.wa { background: #25d366; }
.msg-link.tg { background: #0088cc; }

.map-link-block {
  margin-top: 20px;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: #162418;
  color: #ffffff;
  padding: 70px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav-col h4,
.footer-info-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-nav-col ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-nav-col a:hover {
  color: #6eb879;
}

.footer-info-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-info-col strong {
  color: #ffffff;
}

.footer-info-col a {
  color: #6eb879;
}

.privacy-link {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: underline;
}

/* ==================== MODAL ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-box {
  background: #ffffff;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  color: var(--brand-dark);
}

.modal-body {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-body p {
  margin-bottom: 10px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}

/* ==================== LIGHTBOX MODAL ==================== */
.about-gallery-item,
.tech-gallery-item {
  cursor: pointer;
}

.about-gallery-item::after,
.tech-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 34, 22, 0.35) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3Cline x1='11' y1='8' x2='11' y2='14'%3E%3C/line%3E%3Cline x1='8' y1='11' x2='14' y2='11'%3E%3C/line%3E%3C/svg%3E") center center no-repeat;
  opacity: 0;
  transition: opacity var(--tr-fast);
  pointer-events: none;
}

.about-gallery-item:hover::after,
.tech-gallery-item:hover::after {
  opacity: 1;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeInLightbox 0.25s ease-out;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  object-fit: contain;
  background: transparent;
  animation: scaleUpLightbox 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
  backdrop-filter: blur(8px);
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
  backdrop-filter: blur(8px);
  padding-bottom: 3px;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@keyframes fadeInLightbox {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUpLightbox {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  
  .lightbox-img {
    max-height: 70vh;
  }

  .lightbox-caption {
    font-size: 13px;
  }
}

/* ==================== RESPONSIVE DESIGN & MOBILE OPTIMIZATION ==================== */

/* Laptop & Tablet Landscape (1200px - 1080px) */
@media (max-width: 1200px) {
  :root {
    --container-max: 1100px;
  }
  .nav-list { gap: 12px; }
  .nav-link { font-size: 13px; }
  .brand-name { font-size: 16px; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 26px; }
}

/* Tablet Portrait & Mobile (1080px and below) */
@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 10000;
  }

  .header-actions .header-phone,
  .header-actions .header-cta-btn {
    display: none;
  }

  .burger-btn {
    display: flex;
    z-index: 100001;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: #ffffff;
    padding: 24px 20px 40px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99999;
    flex-direction: column;
    justify-content: flex-start;
  }

  .main-nav.open {
    display: flex !important;
    animation: slideDownMenu 0.25s ease-out forwards;
  }

  @keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-bottom: 20px;
  }

  .nav-link {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-dark);
    padding: 13px 4px;
    border-bottom: 1px solid #edf2ef;
    width: 100%;
  }

  .nav-link:hover {
    color: var(--brand-emerald);
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .mobile-nav-phone {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-forest);
    text-align: center;
    padding: 12px;
    background: var(--brand-light-green);
    border-radius: var(--radius-pill);
    display: block;
  }

  .mobile-nav-btn {
    padding: 14px;
    font-size: 15px;
  }

  .about-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .season-grid-12 { grid-template-columns: repeat(6, 1fr); }
  .why-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .pricing-flex-grid { grid-template-columns: 1fr; }
  .catalog-card-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-section {
    min-height: calc(100vh - var(--header-height));
    padding: 60px 0 80px;
  }

  .hero-title { 
    font-size: 40px; 
    letter-spacing: -0.5px;
  }

  .hero-subtitle { 
    font-size: 24px; 
    margin-bottom: 18px;
  }

  .hero-lead { 
    font-size: 16.5px; 
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .about-paragraphs-card {
    padding: 26px 20px;
  }

  .catalog-card-layout {
    padding: 24px 20px;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .catalog-media-side {
    max-width: 440px;
    margin: 0 auto;
  }

  .season-box {
    padding: 26px 18px;
  }

  .coop-banner-card {
    padding: 42px 24px;
  }

  .coop-title {
    font-size: 28px;
  }
}

/* Mobile Devices (600px and below) */
@media (max-width: 600px) {
  :root {
    --header-height: 62px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    padding: 0 16px;
  }

  .section { 
    padding: 50px 0; 
  }

  .section-title { 
    font-size: 26px; 
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* Header on Mobile */
  .brand-logo {
    gap: 8px;
    max-width: calc(100% - 50px);
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 14.5px;
  }

  .brand-sub {
    font-size: 9px;
  }

  /* Hero Section on Mobile */
  .hero-section {
    padding: 40px 0 60px;
    min-height: calc(100svh - var(--header-height));
  }

  .hero-tag-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.4;
  }

  .hero-title { 
    font-size: 32px; 
    margin-bottom: 10px;
  }

  .hero-subtitle { 
    font-size: 20px; 
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* About Complex on Mobile */
  .about-paragraphs-card {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .narrative-p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .metrics-row { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
    margin-bottom: 16px;
  }

  .metrics-row .metric-box {
    padding: 16px 12px;
  }

  .metric-value {
    font-size: 22px;
  }

  .metric-label {
    font-size: 11.5px;
  }

  .metric-pill {
    font-size: 12px;
    padding: 7px 12px;
    width: 100%;
    text-align: center;
  }

  .about-video-wrapper {
    margin-top: 18px;
    margin-bottom: 14px;
  }

  .about-video-card {
    height: 340px;
    border-radius: var(--radius-lg);
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }

  .about-gallery-item {
    height: 180px;
    border-radius: var(--radius-md);
  }

  /* Technologies on Mobile */
  .tech-grid { 
    grid-template-columns: 1fr; 
    gap: 12px;
    margin-bottom: 20px;
  }

  .tech-card {
    padding: 20px 16px;
  }

  .tech-card-title {
    font-size: 18px;
  }

  .tech-card-desc {
    font-size: 13.5px;
  }

  .tech-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .tech-gallery-item {
    height: 160px;
    border-radius: var(--radius-md);
  }

  .tech-closing-card {
    padding: 18px 16px;
  }

  .tech-closing-card p {
    font-size: 14px;
  }

  /* Catalog on Mobile */
  .catalog-card-layout {
    padding: 18px 14px;
    gap: 20px;
    border-radius: var(--radius-lg);
    grid-template-columns: 1fr;
  }

  .catalog-media-side {
    max-width: 100%;
  }

  .catalog-flower-title {
    font-size: 24px;
  }

  .catalog-gallery-thumbs {
    gap: 8px;
  }

  .specs-table th, 
  .specs-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .specs-table td:first-child {
    width: 50%;
  }

  .catalog-cta-wrap .btn {
    width: 100%;
  }

  /* Seasonality on Mobile */
  .season-box {
    padding: 18px 12px;
    border-radius: var(--radius-lg);
  }

  .season-grid-12 { 
    grid-template-columns: repeat(4, 1fr); 
    gap: 6px;
    margin-bottom: 16px;
  }

  .month-pill {
    padding: 10px 4px;
  }

  .m-title {
    font-size: 12px;
  }

  .m-state {
    font-size: 10px;
  }

  .m-note {
    font-size: 8px;
    padding: 1px 4px;
  }

  .season-notice {
    padding: 12px 14px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  /* Why Us on Mobile */
  .why-grid-6 { 
    grid-template-columns: 1fr; 
    gap: 12px;
  }

  .why-card {
    padding: 20px 16px;
  }

  .why-num {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .why-card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .why-card-desc {
    font-size: 13.5px;
  }

  /* Pricing & Order on Mobile */
  .pricing-block-card, 
  .delivery-block-card {
    padding: 20px 16px;
    margin-bottom: 14px;
  }

  .block-title-sub {
    font-size: 14.5px;
    margin-bottom: 14px;
  }

  .price-row {
    padding: 10px 12px;
  }

  .p-range {
    font-size: 12.5px;
  }

  .p-cost {
    font-size: 17px;
  }

  .directions-list {
    font-size: 13px;
    gap: 8px;
  }

  .del-custom-note {
    font-size: 12px;
    padding: 10px 12px;
  }

  .payment-note-box {
    font-size: 12px;
  }

  .form-card-body {
    padding: 22px 16px;
  }

  .form-heading {
    font-size: 20px;
  }

  .form-desc {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  /* Prevent auto-zoom in iOS Safari */
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px !important;
    padding: 11px 12px;
  }

  .form-checkbox-row {
    font-size: 11px;
    line-height: 1.4;
  }

  /* Cooperation on Mobile */
  .coop-banner-card {
    padding: 32px 16px;
    border-radius: var(--radius-lg);
  }

  .coop-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .audiences-list-5 {
    gap: 6px;
    margin-bottom: 20px;
  }

  .aud-item {
    font-size: 11.5px;
    padding: 6px 12px;
    width: 100%;
    justify-content: center;
  }

  .coop-paragraph {
    font-size: 14.5px;
    margin-bottom: 12px;
  }

  .coop-final-line {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .coop-btn-wrap {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .coop-btn-wrap .btn {
    width: 100%;
  }

  /* Contacts on Mobile */
  .contacts-wrapper-card {
    padding: 22px 16px;
  }

  .contact-entry { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 4px; 
    padding-bottom: 12px;
  }

  .entry-label {
    width: 100%;
    font-size: 12px;
  }

  .entry-val { 
    text-align: left; 
    font-size: 15px;
    width: 100%;
  }

  .messenger-btns {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 4px;
  }

  .msg-link {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
  }

  /* Footer on Mobile */
  .site-footer {
    padding: 40px 0 24px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-nav-col ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Extra Small Phones (375px and below) */
@media (max-width: 375px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 18px; }
  .metrics-row { grid-template-columns: 1fr; }
  .season-grid-12 { grid-template-columns: repeat(3, 1fr); }
}
