@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3A7D44;
  --primary-dark: #1E4D2B;
  --primary-light: #6DB56E;
  --secondary: #A0785A;
  --secondary-dark: #7A5A3E;
  --secondary-light: #C9A882;
  --accent: #C8E6C9;
  --accent-light: #E8F5E9;
  --bg: #FAFAF3;
  --bg-alt: #F3F1EB;
  --text: #2B2B2B;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --border: #E0DDD5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --header-h: 70px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  font-size: 0.88rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: 0.8rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(250, 250, 243, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  z-index: 9999;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - 3px);
  padding: 0 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--primary-dark);
}

.brand-icon {
  font-size: 1.4rem;
  color: var(--primary);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: none;
}

.main-nav.active {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.2rem 0;
  transition: color var(--transition);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
  position: absolute;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 243, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.mobile-nav-list a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: var(--primary);
}

body.menu-open {
  overflow: hidden;
}

.page-offset {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(30, 77, 43, 0.85) 0%, rgba(58, 125, 68, 0.7) 50%, rgba(160, 120, 90, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem 1.2rem;
  color: var(--white);
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-dark .section-label {
  color: var(--accent);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.intro-card {
  text-align: center;
  padding: 1.5rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.intro-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.intro-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 0.8rem;
}

.intro-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.intro-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}

.product-card:nth-child(1) .product-card-visual {
  background: linear-gradient(135deg, #3A7D44, #6DB56E);
}

.product-card:nth-child(2) .product-card-visual {
  background: linear-gradient(135deg, #A0785A, #C9A882);
}

.product-card:nth-child(3) .product-card-visual {
  background: linear-gradient(135deg, #1E4D2B, #3A7D44);
}

.product-card-body {
  padding: 1.2rem;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.product-card-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.timeline-step {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -1.65rem;
  top: 0.15rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 1;
}

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.timeline-step p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.feature-item:hover {
  background: rgba(255,255,255,0.06);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.feature-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.78rem;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 3rem 1.2rem;
  border-radius: 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.88rem;
}

.subpage-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.subpage-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subpage-hero p {
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

.content-section {
  padding: 3rem 0;
}

.content-block {
  max-width: 750px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 0.8rem;
}

.content-block h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-block p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.content-block ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.content-block ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.split-content img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-text h2 {
  margin-bottom: 0.6rem;
}

.split-text p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.info-card {
  padding: 1.3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--primary);
  transition: transform var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
}

.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h3 i {
  color: var(--primary);
  font-size: 0.85rem;
}

.info-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form-section {
  background: var(--white);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.contact-form-section > p {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 125, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-check label {
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
}

.form-check a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.contact-detail div p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.contact-detail div p:first-child {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 1.5rem 0 1rem;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.7rem;
  opacity: 0.6;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 1rem 1.2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.cookie-inner p {
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-inner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-accept {
  padding: 0.45rem 1.2rem;
  background: var(--primary-light);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--primary);
}

.fullpage-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fullpage-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.2rem;
}

.fullpage-content i {
  font-size: 3rem;
  color: #49a156;
  margin-bottom: 1rem;
  display: block;
}

.fullpage-content h1 {
  margin-bottom: 0.6rem;
}

.fullpage-content p {
  color: var(--text-light);
  max-width: 400px;
  margin: 0 auto 1.5rem;
  font-size: 0.88rem;
}

.policy-content {
  padding: 3rem 0;
}

.policy-content h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.policy-date {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.policy-body {
  max-width: 750px;
  margin: 0 auto;
}

.policy-body h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
}

.policy-body h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}

.policy-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.policy-body ul,
.policy-body ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.policy-body ul {
  list-style: disc;
}

.policy-body ol {
  list-style: decimal;
}

.policy-body li {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.approach-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: approach;
}

.approach-step {
  counter-increment: approach;
  padding: 1.3rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: 3.5rem;
}

.approach-step::before {
  content: counter(approach);
  position: absolute;
  left: 1rem;
  top: 1.3rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.approach-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.approach-step p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.herb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.herb-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.herb-card:hover {
  transform: translateY(-2px);
}

.herb-card i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0.15rem;
}

.herb-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.herb-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.care-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.care-tip {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--accent-light);
  border-left: 3px solid var(--primary);
}

.care-tip h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.care-tip h3 i {
  color: var(--primary);
}

.care-tip p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.balcony-layouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.layout-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.layout-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.layout-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.layout-card:nth-child(1) .layout-card-icon {
  background: var(--accent-light);
  color: var(--primary);
}

.layout-card:nth-child(2) .layout-card-icon {
  background: #FFF3E0;
  color: var(--secondary);
}

.layout-card:nth-child(3) .layout-card-icon {
  background: #E0F2F1;
  color: #00796B;
}

.layout-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.layout-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.contact-hero p {
  opacity: 0.85;
  max-width: 450px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.error-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .herb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-tips {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .balcony-layouts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }

  .header-inner {
    padding: 0 2rem;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .mobile-overlay {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    padding: 2rem;
  }

  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .section {
    padding: 4.5rem 0;
  }

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .herb-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-wrapper iframe {
    height: 350px;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-content {
    max-width: 650px;
    padding: 2rem 3rem;
  }

  .section {
    padding: 5rem 0;
  }

  .subpage-hero {
    padding: 4.5rem 0 3rem;
  }

  .subpage-hero h1 {
    font-size: 2.4rem;
  }

  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 359px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 0.8rem;
  }

  .product-card-visual {
    height: 100px;
  }
}
