:root {
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --bg-color: #F5F0E8;
  --text-primary: #2D3436;
  --accent: #55A3FF;
  --accent-secondary: #FF6B9D;
  --accent-tertiary: #C44569;
  --secondary: #FFC312;
  --neutral: #DFE6E9;
  --highlight: #00B894;
  --shadow-sm: 0 4px 12px rgba(45, 52, 54, 0.08);
  --shadow-md: 0 8px 24px rgba(45, 52, 54, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 52, 54, 0.16);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section:nth-of-type(even):not(.hero) {
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.5) 0%, rgba(255, 250, 240, 0.3) 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding-top: calc(var(--space-3xl) + 2rem);
  padding-bottom: calc(var(--space-3xl) + 2rem);
}

.section:nth-of-type(odd):not(.hero) {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 245, 238, 0.3) 50%, transparent 100%);
}



.header {
  background: linear-gradient(135deg, rgba(255, 245, 238, 0.98) 0%, rgba(245, 240, 232, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  position: relative;
  z-index: 100;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  border-bottom: 2px solid var(--accent);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--highlight) 100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  min-height: 50px;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border-radius: 50%;
  margin-right: var(--space-xs);
  box-shadow: 0 0 8px rgba(85, 163, 255, 0.6);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.logo-text {
  white-space: nowrap;
}

.nav {
  display: none;
}

.nav {
  display: none;
  transform: translateY(-100%);
}

.nav.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(255, 245, 238, 0.98) 0%, rgba(245, 240, 232, 0.98) 100%);
  backdrop-filter: blur(20px);
  box-shadow: -8px 0 32px rgba(45, 52, 54, 0.2);
  padding: var(--space-2xl) var(--space-lg);
  z-index: 1000;
  transform: translateY(0);
  transition: transform var(--transition);
  overflow-y: auto;
  border-left: 4px solid var(--accent);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.nav-link {
  color: var(--text-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  display: block;
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  background: transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: width var(--transition);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  z-index: -1;
}

.nav-link:hover {
  border-left-color: var(--accent);
  color: white;
  transform: translateX(8px);
}

.nav-link:hover::before {
  width: 100%;
}

.menu-toggle {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.menu-toggle:hover {
  transform: rotate(90deg) scale(1.05);
  box-shadow: var(--shadow-md);
}

body.menu-open .menu-toggle {
  display: none;
}

.menu-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all var(--transition);
  position: absolute;
  border-radius: 1px;
}

.menu-icon span:nth-child(1) {
  top: 5px;
}

.menu-icon span:nth-child(2) {
  top: 10px;
}

.menu-icon span:nth-child(3) {
  top: 15px;
}

.menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(85, 163, 255, 0.75) 0%, rgba(255, 107, 157, 0.65) 50%, rgba(0, 184, 148, 0.7) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 195, 18, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
  animation: fadeInUp 0.8s ease-out;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-figure {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plant-animation {
  width: 300px;
  height: 400px;
  position: relative;
  animation: plantGrow 3s ease-in-out infinite;
}

.plant-stem {
  width: 8px;
  height: 200px;
  background: linear-gradient(180deg, var(--highlight) 0%, #00a085 100%);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: stemSway 4s ease-in-out infinite;
}

.plant-leaf {
  position: absolute;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, var(--highlight) 0%, #00a085 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

.plant-leaf:nth-child(1) {
  left: 50%;
  top: 40px;
  transform: translateX(-50%) rotate(-20deg);
  animation: leafMove1 3s ease-in-out infinite;
}

.plant-leaf:nth-child(2) {
  left: 50%;
  top: 80px;
  transform: translateX(-50%) rotate(25deg);
  animation: leafMove2 3.5s ease-in-out infinite;
}

.plant-leaf:nth-child(3) {
  left: 50%;
  top: 120px;
  transform: translateX(-50%) rotate(-15deg);
  animation: leafMove3 2.8s ease-in-out infinite;
}

@keyframes plantGrow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes stemSway {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) rotate(3deg);
  }
  75% {
    transform: translateX(-50%) rotate(-3deg);
  }
}

@keyframes leafMove1 {
  0%, 100% {
    transform: translateX(-50%) rotate(-20deg);
  }
  50% {
    transform: translateX(-50%) rotate(-25deg) scale(1.1);
  }
}

@keyframes leafMove2 {
  0%, 100% {
    transform: translateX(-50%) rotate(25deg);
  }
  50% {
    transform: translateX(-50%) rotate(30deg) scale(1.1);
  }
}

@keyframes leafMove3 {
  0%, 100% {
    transform: translateX(-50%) rotate(-15deg);
  }
  50% {
    transform: translateX(-50%) rotate(-20deg) scale(1.1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(85, 163, 255, 0.4);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(85, 163, 255, 0.6);
  color: white;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  border-color: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(85, 163, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--highlight) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(85, 163, 255, 0.3);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
  text-align: center;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(85, 163, 255, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
  border: 2px solid rgba(85, 163, 255, 0.2);
  position: relative;
  transition: all var(--transition);
}

.card:hover .product-price {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(85, 163, 255, 0.15) 0%, rgba(255, 107, 157, 0.15) 100%);
  box-shadow: 0 4px 12px rgba(85, 163, 255, 0.2);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--neutral);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(85, 163, 255, 0.1);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-input {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.875rem;
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1a1f21 100%);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--highlight) 100%);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(85, 163, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: var(--space-lg);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  line-height: 1.6;
  max-width: 400px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: 1px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  transition: all var(--transition);
  display: inline-block;
  padding: var(--space-xs) 0;
  position: relative;
  width: fit-content;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: width var(--transition);
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.7rem, 1.5vw, 0.8125rem);
  margin: 0;
}

.legal-page {
  padding: var(--space-3xl) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-content h1 {
  margin-bottom: var(--space-xl);
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-sm);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
}

table th,
table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--neutral);
}

table th {
  background-color: var(--neutral);
  font-weight: 600;
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.home-button:hover {
  background-color: var(--text-primary);
  transform: translateY(-2px);
  color: white;
}

.center-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.center-page h1 {
  margin-bottom: var(--space-lg);
}

.center-page p {
  max-width: none;
  font-size: 1.125rem;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(31, 61, 43, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.popup-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-xs);
}

.popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 767px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-figure {
    order: -1;
  }

  .plant-animation {
    width: 200px;
    height: 300px;
    margin: 0 auto;
  }

  .plant-stem {
    height: 150px;
  }

  .plant-leaf {
    width: 80px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .header {
    position: relative;
  }

  .nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 50px;
    background: none;
    box-shadow: none;
    padding: 0 var(--space-md);
    transform: none !important;
    overflow-y: visible;
    border-left: none;
    clip-path: none;
    z-index: 101;
    margin-left: 50%;
  }

  .menu-close {
    display: none;
  }

  .nav-list {
    display: flex !important;
    flex-direction: row;
    gap: var(--space-md);
    margin-top: 0;
    margin-left: auto;
  }

  .nav-link {
    padding: var(--space-xs) var(--space-sm);
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:hover {
    border-left: none;
    border-bottom-color: var(--accent);
    transform: translateY(-1px);
    background: rgba(85, 163, 255, 0.08);
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: var(--space-3xl);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .header-container {
    padding: 0 var(--space-xl);
  }

  .hero-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .card {
    padding: var(--space-md);
  }

  .header {
    padding: var(--space-xs) 0;
  }

  .header-container {
    min-height: 44px;
    padding: 0 var(--space-sm);
  }

  .logo {
    font-size: 0.75rem;
    padding: 2px var(--space-xs);
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .menu-icon {
    width: 18px;
    height: 18px;
  }
}

