/* ====================================================
   BLOOMERA — Онлайн-курсы флористики
   Vanilla CSS — NO FRAMEWORKS
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --green: #4CAF50;
  --green-dark: #388E3C;
  --green-light: #8BC34A;
  --green-pale: #E8F5E9;
  --amber: #FFC107;
  --amber-dark: #FF8F00;
  --amber-light: #FFF8E1;
  --white: #fff;
  --off-white: #FAFDF6;
  --text-dark: #1a2e1a;
  --text-mid: #3a5a3a;
  --text-light: #6a8f6a;
  --shadow-sm: 0 2px 12px rgba(76,175,80,.10);
  --shadow-md: 0 8px 32px rgba(76,175,80,.14);
  --shadow-lg: 0 20px 60px rgba(76,175,80,.18);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 32px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Nunito', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(76,175,80,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76,175,80,.45);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: var(--text-dark);
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(255,193,7,.35);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn-sm { padding: 10px 22px; font-size: .9rem; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,253,246,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76,175,80,.12);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-mid);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- SECTION HEADER ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ====================================================
   BLOCK 1 — HERO (repiyssew)
   ==================================================== */
.repiyssew {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0faf0 0%, #e8f5e9 40%, #fff8e1 100%);
  padding-top: 72px;
  overflow: hidden;
}

/* Upper half: 3 images with stem animations */
.hero-upper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 40px 24px 0;
  position: relative;
  min-height: 380px;
}

.hero-img-wrap {
  position: relative;
  flex: 1;
  max-width: 320px;
}
.hero-img-wrap:nth-child(1) { transform: translateY(30px); }
.hero-img-wrap:nth-child(3) { transform: translateY(30px); }

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  height: 300px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s ease, transform .8s ease;
}
.hero-img-wrap img.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-img-wrap:nth-child(1) img { transition-delay: .1s; }
.hero-img-wrap:nth-child(2) img { height: 360px; transition-delay: .25s; }
.hero-img-wrap:nth-child(3) img { transition-delay: .4s; }

/* Decorative stems */
.stems-svg {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.stem-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawStem 1.8s ease forwards;
}
.stem-path:nth-child(2) { animation-delay: .3s; }
.stem-path:nth-child(3) { animation-delay: .6s; }
.stem-path:nth-child(4) { animation-delay: .9s; }
.stem-path:nth-child(5) { animation-delay: 1.1s; }
@keyframes drawStem {
  to { stroke-dashoffset: 0; }
}

/* Lower half: 3 cells */
.hero-lower {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 320px;
  position: relative;
}
.hero-cell {
  padding: 48px 40px;
  position: relative;
}
.hero-cell-greeting {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-cell-greeting .greeting-badge {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 16px;
}
.hero-cell-greeting h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
}
.hero-cell-greeting p {
  font-size: 1rem;
  opacity: .9;
  line-height: 1.7;
}
.hero-cell-image {
  overflow: hidden;
}
.hero-cell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cell-form {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-form-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hero-form-subtitle {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 22px;
}
.hero-form .form-field {
  margin-bottom: 14px;
}
.hero-form input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8f5e9;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--off-white);
}
.hero-form input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.hero-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ====================================================
   BLOCK 2 — SLIDER / CAROUSEL
   ==================================================== */
.slider-section {
  padding: 100px 0;
  background: #fff;
}
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.slider-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slide-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,40,16,.85) 0%, transparent 60%);
}
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 48px;
  color: #fff;
}
.slide-number {
  display: inline-block;
  background: var(--amber);
  color: var(--text-dark);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.slide-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.slide-content p { font-size: 1rem; opacity: .85; max-width: 560px; line-height: 1.7; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  color: var(--green);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--green); color: #fff; }
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ====================================================
   BLOCK 3 — ACCORDION (FAQ)
   ==================================================== */
.accordion-section {
  padding: 100px 0;
  background: var(--green-pale);
}
.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.accordion-image-wrap {
  position: sticky;
  top: 100px;
}
.accordion-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 500px;
}
.accordion-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
}
.accordion-image-badge span { color: var(--green); font-size: 1.4rem; font-family: var(--font-serif); }

.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.accordion-item.open { box-shadow: var(--shadow-md); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  gap: 16px;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--green); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: .95rem;
}
.accordion-item.open .accordion-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body-inner {
  padding: 0 26px 22px;
  color: var(--text-light);
  font-size: .97rem;
  line-height: 1.8;
}

/* ====================================================
   BLOCK 4 — CIRCULAR ABOUT
   ==================================================== */
.about-section {
  padding: 100px 0;
  background: #fff;
}
.about-circle-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}
.about-center-img {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 12px rgba(76,175,80,.12), var(--shadow-lg);
  flex-shrink: 0;
}
.about-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
  width: 210px;
  pointer-events: all;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .6s ease, transform .6s ease;
}
.about-card.visible {
  opacity: 1;
  transform: scale(1);
}
.about-card-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.about-card h4 {
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.about-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.about-card--top-left { top: 10%; left: 5%; }
.about-card--top-right { top: 10%; right: 5%; }
.about-card--mid-left { top: 50%; left: 0; transform: translateY(-50%) scale(.85); }
.about-card--mid-left.visible { transform: translateY(-50%) scale(1); }
.about-card--mid-right { top: 50%; right: 0; transform: translateY(-50%) scale(.85); }
.about-card--mid-right.visible { transform: translateY(-50%) scale(1); }
.about-card--bot-left { bottom: 10%; left: 5%; }
.about-card--bot-right { bottom: 10%; right: 5%; }

/* ====================================================
   BLOCK 5 — TABLE (Schedule)
   ==================================================== */
.schedule-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #f6fff6 0%, #e8f5e9 100%);
}
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 700px;
}
.schedule-table thead {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
}
.schedule-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.schedule-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(76,175,80,.08);
  font-size: .96rem;
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--green-pale); }
.schedule-table tbody tr { transition: background var(--transition); }
.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.level-badge.beginner { background: #E3F2FD; color: #1565C0; }
.level-badge.intermediate { background: #FFF3E0; color: #E65100; }
.level-badge.all { background: var(--green-pale); color: var(--green-dark); }
.price-cell { font-weight: 700; color: var(--green-dark); font-size: 1.05rem; }

/* ====================================================
   BLOCK 6 — PRICE CARDS
   ==================================================== */
.pricing-section {
  padding: 100px 0;
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  border-radius: var(--radius-lg);
  border: 2px solid rgba(76,175,80,.12);
  padding: 36px 28px;
  background: #fff;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-light);
}
.price-card.featured {
  border-color: var(--green);
  transform: scale(1.04);
}
.price-card.featured::before { background: var(--green); }
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--green);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--amber);
  color: var(--text-dark);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .06em;
}
.price-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.price-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.price-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(76,175,80,.07);
  line-height: 1.5;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ====================================================
   BLOCK 7 — CALCULATOR
   ==================================================== */
.calc-section {
  padding: 100px 0;
  background: var(--green-pale);
}
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.calc-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.calc-box h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.calc-box .calc-desc {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.calc-field {
  margin-bottom: 24px;
}
.calc-field label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.calc-slider-wrap {
  position: relative;
}
.calc-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(76,175,80,.35);
  transition: transform var(--transition);
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 8px;
}
.calc-select-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.calc-radio-btn {
  display: none;
}
.calc-radio-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 2px solid rgba(76,175,80,.2);
  border-radius: 50px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all var(--transition);
}
.calc-radio-btn:checked + .calc-radio-label {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.calc-radio-label:hover {
  border-color: var(--green);
  color: var(--green);
}
.calc-result {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-top: 32px;
  color: #fff;
  text-align: center;
}
.calc-result-label {
  font-size: .88rem;
  opacity: .85;
  margin-bottom: 8px;
}
.calc-result-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-result-note { font-size: .82rem; opacity: .75; }
.calc-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.calc-info-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-info-text h4 { font-size: 1rem; margin-bottom: 6px; }
.calc-info-text p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ====================================================
   BLOCK 8 — SELLING TEXT
   ==================================================== */
.selling-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a3a1a 0%, #2e5a2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.selling-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.selling-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.selling-section .section-tag {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.selling-section .section-title { color: #fff; }
.selling-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,.85);
  margin: 32px 0;
  line-height: 1.7;
  border-left: 4px solid var(--amber);
  padding-left: 24px;
  text-align: left;
}
.selling-body {
  font-size: 1.08rem;
  line-height: 2;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  text-align: left;
}
.selling-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}
.selling-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.selling-highlight .icon { font-size: 1.2rem; }

/* ====================================================
   BLOCK 9 — INFOGRAPHIC
   ==================================================== */
.infographic-section {
  padding: 100px 0;
  background: #fff;
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.info-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.info-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 0 0 6px 6px;
}
.info-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  opacity: .25;
  position: absolute;
  top: 20px;
  right: 20px;
}
.info-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.info-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.info-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.info-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}
.info-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  font-family: var(--font-sans);
}
.info-stat-label { font-size: .82rem; color: var(--text-light); }
.info-counter { transition: all 1s ease; }

/* ====================================================
   BLOCK 10 — GALLERY
   ==================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--green-pale);
}
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
  gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,40,16,.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
}

/* ====================================================
   BLOCK 11 — DIRECTION CARDS + POPUP (8th block)
   ==================================================== */
.directions-section {
  padding: 100px 0;
  background: #fff;
}
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.direction-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(76,175,80,.1);
  transition: all var(--transition);
  cursor: pointer;
}
.direction-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.direction-card-img {
  height: 200px;
  overflow: hidden;
}
.direction-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.direction-card:hover .direction-card-img img { transform: scale(1.08); }
.direction-card-body {
  padding: 24px 24px 28px;
}
.direction-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.direction-card-name {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.direction-card-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.direction-card .btn { width: 100%; justify-content: center; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,40,16,.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(.95);
  transition: transform .35s ease;
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 32px 36px 28px;
  position: relative;
}
.modal-header .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-header .modal-close:hover { background: rgba(255,255,255,.25); }
.modal-icon { font-size: 2rem; margin-bottom: 10px; }
.modal-title { font-size: 1.4rem; color: #fff; }
.modal-subtitle { font-size: .9rem; opacity: .85; margin-top: 6px; line-height: 1.6; }
.modal-body { padding: 32px 36px 36px; }
.modal-form .form-field { margin-bottom: 16px; }
.modal-form label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.modal-form input,
.modal-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(76,175,80,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--off-white);
  -webkit-appearance: none;
}
.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.modal-form-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.plan-radio { display: none; }
.plan-label {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border: 2px solid rgba(76,175,80,.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.plan-radio:checked + .plan-label {
  border-color: var(--green);
  background: var(--green-pale);
}
.plan-label:hover { border-color: var(--green); }
.plan-label-name { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.plan-label-price { font-size: .8rem; color: var(--text-light); margin-top: 3px; }
.modal-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ====================================================
   TESTIMONIALS / REVIEWS
   ==================================================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--amber-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
  opacity: .4;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  font-size: .95rem;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #fff;
  font-weight: 800;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.testimonial-city { font-size: .8rem; color: var(--text-light); }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,.6);
}
.footer-brand .footer-contact {
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
}
.footer-brand .footer-contact a:hover { color: var(--green-light); }
.footer-col h4 {
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--green-light); }

/* ====================================================
   COOKIE BANNER
   ==================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--text-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  z-index: 3000;
  transform: translateY(120%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-text { font-size: .86rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 18px; }
.cookie-text a { color: var(--green-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: .85rem; }
.btn-cookie-accept { background: var(--green); color: #fff; border-color: var(--green); }
.btn-cookie-necessary { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.btn-cookie-settings { background: transparent; color: rgba(255,255,255,.7); border-color: transparent; padding: 10px; }

/* ====================================================
   LEGAL PAGES (privacy, terms, cookie)
   ==================================================== */
.legal-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 120px 0 60px;
  text-align: center;
}
.legal-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); }
.legal-hero p { color: rgba(255,255,255,.8); margin-top: 12px; font-size: 1.05rem; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 { font-size: 1.5rem; color: var(--text-dark); margin: 40px 0 14px; }
.legal-content p { font-size: .97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: .97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; }

/* ====================================================
   THANKS PAGE
   ==================================================== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-pale), var(--amber-light));
  padding: 80px 24px;
}
.thanks-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thanks-icon { font-size: 4rem; margin-bottom: 20px; }
.thanks-card h1 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 14px; }
.thanks-card p { font-size: 1.02rem; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.thanks-card .btn { margin: 0 auto; }

/* ====================================================
   ANIMATIONS
   ==================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

.scale-in {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .6s ease, transform .6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* scroll reveal line */
.reveal-line {
  overflow: hidden;
}
.reveal-line span {
  display: block;
  transform: translateY(100%);
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-line.visible span { transform: translateY(0); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 3; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-lower { grid-template-columns: 1fr; }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-image-wrap { position: static; }
  .accordion-image-wrap img { height: 300px; }
  .about-circle-layout { min-height: 500px; }
  .calc-layout { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-upper { flex-direction: column; align-items: center; }
  .hero-img-wrap, .hero-img-wrap:nth-child(1), .hero-img-wrap:nth-child(3) { transform: none; max-width: 100%; }
  .hero-img-wrap img, .hero-img-wrap:nth-child(2) img { height: 220px; }
  .about-center-img { width: 240px; height: 240px; }
  .about-card { width: 170px; font-size: .82rem; }
  .about-card--top-left { left: 0; }
  .about-card--top-right { right: 0; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(250,253,246,.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(76,175,80,.15);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .directions-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal-body, .modal-header { padding: 24px; }
  .modal-form-plans { grid-template-columns: 1fr; }
  .hero-cell { padding: 32px 24px; }
  .about-circle-layout { flex-direction: column; min-height: auto; }
  .about-orbit { position: static; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
  .about-card { position: static; width: calc(50% - 6px); opacity: 1; transform: none; }
  .about-card--mid-left, .about-card--mid-right { transform: none; }
  .about-card--mid-left.visible, .about-card--mid-right.visible { transform: none; }
  .infographic-grid { grid-template-columns: 1fr; }
  .selling-quote { font-size: 1.1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .selling-highlights { flex-direction: column; align-items: stretch; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .thanks-card { padding: 40px 24px; }
}
