/* 
  Sage & Ash - Brand Identity & Design System
  Eco-Minimalism Italian Furniture Store
  Palette:
    - Sage Green: #65A30D (Accent / Eco Symbolism)
    - Ash Beige: #F3F4F6 (Base Light)
    - Clay Warm: #D97706 (Secondary / Warmth)
    - Linen Sand: #FDFBF7 (Body Background / Softness)
    - Charcoal (Text): #1F2937
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --color-sage: #65A30D;
  --color-sage-light: #F1F8E9;
  --color-sage-dark: #4D7C0F;
  --color-ash-beige: #F3F4F6;
  --color-clay: #D97706;
  --color-clay-light: #FEF3C7;
  --color-linen: #FDFBF7;
  --color-charcoal: #1F2937;
  --color-charcoal-light: #4B5563;
  --color-white: #FFFFFF;
  
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.06);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-linen);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.25;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-linen);
}
::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-sage);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-sage);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(101, 163, 13, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 163, 13, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-clay {
  background-color: var(--color-clay);
  color: var(--color-white);
}

.btn-clay:hover {
  background-color: #B45309;
  transform: translateY(-2px);
}

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 60px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--color-sage);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-sage);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-charcoal);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Scroll Reveal Baseline */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(101, 163, 13, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(217, 119, 6, 0.04) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-charcoal);
}

.hero-content h1 span {
  display: block;
  color: var(--color-sage);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-charcoal-light);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--color-ash-beige);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .icon {
  background-color: var(--color-sage-light);
  color: var(--color-sage);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.hero-badge-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-badge-text p {
  font-size: 0.75rem;
  color: var(--color-charcoal-light);
}

/* Organic Shapes & Leaf Illustrations */
.organic-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.85;
}

.organic-shape-1 {
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background-color: var(--color-sage-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(40px);
}

.organic-shape-2 {
  bottom: 5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--color-clay-light);
  border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%;
  filter: blur(45px);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--color-white);
  padding: 48px 36px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(229, 231, 235, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-sage);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-sage-light);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
}

/* Category Filter Catalog */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-tab:hover, .filter-tab.active {
  background-color: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(229, 231, 235, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  background-color: var(--color-ash-beige);
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(253, 251, 247, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-charcoal);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-material {
  font-size: 0.85rem;
  color: var(--color-sage);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-charcoal-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F3F4F6;
  padding-top: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-clay);
}

/* Testimonials / Recensioni */
.testimonials {
  background-color: var(--color-ash-beige);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(229, 231, 235, 0.2);
}

.stars {
  color: var(--color-clay);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-charcoal-light);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-ash-beige);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--color-sage);
}

/* Chi Siamo / Values & History */
.about-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--color-sage-light) 0%, var(--color-linen) 100%);
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--color-charcoal-light);
  font-size: 1.05rem;
}

.about-img-collage {
  position: relative;
}

.collage-main {
  width: 85%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
}

.collage-sub {
  position: absolute;
  width: 50%;
  bottom: -40px;
  right: 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--color-linen);
}

.story-timeline {
  background-color: var(--color-white);
  padding: 100px 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.timeline-step:nth-child(even) {
  direction: rtl;
}

.timeline-step:nth-child(even) .timeline-content {
  direction: ltr;
}

.timeline-content {
  padding: 20px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(101, 163, 13, 0.15);
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.timeline-content p {
  color: var(--color-charcoal-light);
}

.timeline-img {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  aspect-ratio: 16/10;
  background-color: var(--color-ash-beige);
}

.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact / Form with Floating Labels */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  background-color: var(--color-sage-light);
  padding: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  color: var(--color-sage);
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--color-charcoal-light);
}

.contact-map-wrapper {
  margin-top: 40px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 250px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
}

/* Custom organic map design representation */
.organic-map-canvas {
  width: 100%;
  height: 100%;
  background-color: #FDFBF7;
  position: relative;
  overflow: hidden;
}

.organic-map-canvas svg {
  width: 100%;
  height: 100%;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-marker-pin {
  width: 20px;
  height: 20px;
  background-color: var(--color-clay);
  border: 4px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  animation: pulsePin 2s infinite;
}

.map-marker-label {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-top: 4px;
  white-space: nowrap;
}

@keyframes pulsePin {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(217, 119, 6, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

/* Floating Label Form */
.booking-form {
  background-color: var(--color-white);
  padding: 48px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(229, 231, 235, 0.2);
}

.booking-form h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--border-radius-sm);
  background: transparent;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 4px var(--color-sage-light);
}

.form-label {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Floating Label Animation */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-sage);
  background-color: var(--color-white);
  padding: 0 6px;
}

.form-submit-success {
  display: none;
  background-color: var(--color-sage-light);
  color: var(--color-sage-dark);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Legal Pages (Privacy, Cookie, Terms) */
.legal-container {
  max-width: 800px;
  margin: 160px auto 100px;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 20px;
}

.legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--color-charcoal-light);
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
  color: var(--color-charcoal-light);
}

.legal-content li {
  margin-bottom: 8px;
}

.consent-id-box {
  background-color: var(--color-ash-beige);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-family: monospace;
  margin-top: 12px;
  font-size: 0.9rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  display: inline-block;
}

/* GDPR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 24px;
  border-radius: var(--border-radius-md);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

.cookie-banner a {
  color: var(--color-sage);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons button {
  flex: 1;
  padding: 10px 0;
  font-size: 0.85rem;
}

/* Footer */
.footer {
  background-color: var(--color-charcoal);
  color: #E5E7EB;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo h3 {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-logo h3 span {
  color: var(--color-sage);
}

.footer-logo p {
  color: #9CA3AF;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-links h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9CA3AF;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #9CA3AF;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: #9CA3AF;
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .products-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--color-linen);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 40px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-badge {
    left: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .timeline-step:nth-child(even) {
    direction: ltr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
