:root {
  --color-morning-mist: #F5F6E8;
  --color-pale-sage: #E8ECD4;
  --color-willow-cream: #DCE6C8;
  --color-forest-night: #14532D;
  --color-deep-moss: #166534;
  --color-leaf-edge: #22C55E;
  --color-spring-green: #22C55E;
  
  --font-display-extended: 'Bebas Neue Extended', sans-serif;
  --font-display-medium: 'Bebas Neue Medium', sans-serif;
  --font-text: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --spacing-base: 8px;
  --section-padding: 96px;
  --grid-gap: 56px;
  
  --border-radius: 30px;
  --transition-smooth: 0.32s ease;
  --transition-diagonal: 0.84s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --nav-height: 60px;
  --nav-bottom-offset: 28px;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue+Extended&family=Bebas+Neue+Medium&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.78;
  color: var(--color-deep-moss);
  background: linear-gradient(180deg, var(--color-morning-mist) 0%, var(--color-pale-sage) 50%, var(--color-willow-cream) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-display-extended {
  font-family: var(--font-display-extended);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 0.76;
}

.text-display-medium {
  font-family: var(--font-display-medium);
  font-weight: 500;
}

.text-mono {
  font-family: var(--font-mono);
  font-weight: 700;
}

.h1 {
  font-family: var(--font-display-extended);
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--color-forest-night);
  line-height: 0.84;
  letter-spacing: 0.09em;
}

.h2 {
  font-family: var(--font-display-medium);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  color: var(--color-forest-night);
  line-height: 0.84;
}

.h3 {
  font-family: var(--font-display-medium);
  font-size: 1.5rem;
  color: var(--color-deep-moss);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--color-leaf-edge), var(--color-deep-moss));
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 12px 48px rgba(34, 197, 94, 0.42);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(34, 197, 94, 0.52);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-leaf-edge);
  color: var(--color-deep-moss);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--color-leaf-edge);
  color: white;
}

.floating-nav {
  position: fixed;
  bottom: var(--nav-bottom-offset);
  left: 50%;
  transform: translateX(-50%);
  height: var(--nav-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(254, 254, 245, 0.96), rgba(250, 252, 243, 0.96));
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 2px solid rgba(34, 197, 94, 0.22);
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(34, 197, 94, 0.14);
}

.floating-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display-extended);
  font-size: 11px;
  color: var(--color-forest-night);
  letter-spacing: -0.01em;
}

.floating-nav-logo svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-leaf-edge);
}

.floating-nav-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.floating-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--color-deep-moss);
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.floating-nav-item:hover {
  color: var(--color-leaf-edge);
}

.floating-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-deep-moss);
  transition: all var(--transition-smooth);
}

.floating-nav-item:hover svg {
  stroke: var(--color-leaf-edge);
}

.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-leaf-edge), var(--color-deep-moss));
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(34, 197, 94, 0.42);
}

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(254, 254, 245, 0.96), rgba(250, 252, 243, 0.96));
  backdrop-filter: blur(36px);
  border: 2px solid rgba(34, 197, 94, 0.22);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-leaf-edge);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(254, 254, 245, 0.98);
  backdrop-filter: blur(36px);
}

.mobile-overlay.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-overlay-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-forest-night);
}

.mobile-nav-item {
  font-family: var(--font-display-extended);
  font-size: 20px;
  color: var(--color-forest-night);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.mobile-nav-item:hover {
  color: var(--color-leaf-edge);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 120px 72px 96px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-deep-moss);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 52px;
  background: linear-gradient(135deg, var(--color-leaf-edge), var(--color-deep-moss));
  color: white;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 36px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 20px 80px rgba(34, 197, 94, 0.42);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 96px rgba(34, 197, 94, 0.52);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-deep-moss);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.hero-secondary:hover {
  color: var(--color-leaf-edge);
}

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

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  clip-path: polygon(0 6%, 94% 0, 100% 8%, 100% 92%, 6% 100%, 0 94%);
  border: 2px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 48px 192px rgba(34, 197, 94, 0.16);
  overflow: hidden;
}

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

.diagonal-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.diagonal-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--color-leaf-edge);
  opacity: 0.25;
  transform: skewX(-4deg);
  transform-origin: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-deep-moss);
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-deep-moss);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.hero-small {
  min-height: 55vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 160px 72px 64px;
  position: relative;
  overflow: hidden;
}

.hero-small .h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

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

.internal-hero-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  clip-path: polygon(0 6%, 94% 0, 100% 8%, 100% 92%, 6% 100%, 0 94%);
  border: 2px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 32px 128px rgba(34, 197, 94, 0.12);
  overflow: hidden;
}

.internal-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  clip-path: polygon(0 4%, 96% 0, 100% 4%, 100% 96%, 4% 100%, 0 96%);
  border: 2px solid rgba(34, 197, 94, 0.15);
  transition: all var(--transition-diagonal);
}

.bento-card:hover {
  clip-path: polygon(0 2%, 98% 0, 100% 2%, 100% 98%, 2% 100%, 0 98%);
  transform: scale(1.02);
  box-shadow: 0 24px 80px rgba(34, 197, 94, 0.2);
  z-index: 96;
}

.bento-card.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

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

.bento-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(20, 83, 45, 0.9), transparent);
}

.bento-card-title {
  font-family: var(--font-display-medium);
  font-size: 18px;
  color: white;
}

.hard-cuts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hard-cut-panel {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  padding: 48px 32px;
  position: relative;
  transition: all var(--transition-diagonal);
}

.hard-cut-panel:nth-child(odd) {
  background: var(--color-morning-mist);
}

.hard-cut-panel:nth-child(even) {
  background: var(--color-pale-sage);
}

.hard-cut-panel:hover {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  z-index: 4;
}

.hard-cut-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.hard-cut-panel h3 {
  margin-bottom: 12px;
}

.hard-cut-panel p {
  font-size: 15px;
  line-height: 1.6;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-leaf-edge);
  z-index: 0;
}

.timeline-node {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-morning-mist);
  border: 2px solid var(--color-leaf-edge);
  clip-path: polygon(0 4%, 96% 0, 100% 4%, 100% 96%, 4% 100%, 0 96%);
  z-index: 1;
  cursor: pointer;
  transition: all var(--transition-diagonal);
}

.timeline-node:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
  z-index: 96;
}

.timeline-node svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-deep-moss);
}

.timeline-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--color-deep-moss);
  white-space: nowrap;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.advantage-card {
  background: linear-gradient(135deg, var(--color-morning-mist), var(--color-pale-sage));
  padding: 32px 24px;
  border: 2px solid rgba(34, 197, 94, 0.15);
  text-align: center;
  transition: all var(--transition-diagonal);
}

.advantage-card:hover {
  flex-grow: 1.4;
  border-color: var(--color-leaf-edge);
  box-shadow: 0 16px 64px rgba(34, 197, 94, 0.2);
  z-index: 96;
}

.advantage-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-leaf-edge);
  margin-bottom: 16px;
}

.advantage-card h4 {
  font-family: var(--font-display-medium);
  font-size: 16px;
  color: var(--color-forest-night);
  margin-bottom: 8px;
}

.advantage-card .stat {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--color-deep-moss);
  margin-bottom: 8px;
}

.marquee {
  overflow: hidden;
  padding: 48px 0;
  background: var(--color-pale-sage);
}

.marquee-track {
  display: flex;
  gap: 72px;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--color-morning-mist);
  border: 2px dashed var(--color-leaf-edge);
  clip-path: polygon(0 4%, 96% 0, 100% 4%, 100% 96%, 4% 100%, 0 96%);
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-display-extended);
  font-size: 32px;
  color: var(--color-forest-night);
}

.marquee-item label {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--color-deep-moss);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--color-morning-mist);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.team-item:hover, .team-item.active {
  background: var(--color-pale-sage);
  border-left-color: var(--color-leaf-edge);
}

.team-item-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.team-item-info h4 {
  font-family: var(--font-display-medium);
  font-size: 16px;
  color: var(--color-forest-night);
}

.team-item-info p {
  font-size: 14px;
  color: var(--color-deep-moss);
}

.team-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(0 4%, 96% 0, 100% 4%, 100% 96%, 4% 100%, 0 96%);
}

.team-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-morning-mist);
  border-left: 3px solid var(--color-leaf-edge);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item.active {
  border-left-width: 4px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(34, 197, 94, 0.08);
}

.faq-question h4 {
  font-family: var(--font-display-extended);
  font-size: 16px;
  color: var(--color-forest-night);
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-deep-moss);
  transition: all var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-diagonal);
}

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-diagonal);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-morning-mist);
  padding: 32px;
  border: 2px solid rgba(34, 197, 94, 0.15);
  transition: all var(--transition-diagonal);
}

.review-card.active {
  transform: scale(1.15);
  z-index: 100;
}

.review-card:not(.active) {
  transform: scale(0.85);
  opacity: 0.7;
}

.review-card:hover {
  z-index: 100;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--color-leaf-edge);
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-info h5 {
  font-family: var(--font-display-medium);
  font-size: 14px;
  color: var(--color-forest-night);
}

.review-author-info span {
  font-size: 13px;
  color: var(--color-deep-moss);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-morning-mist);
  border: 2px solid var(--color-leaf-edge);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--color-leaf-edge);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-deep-moss);
}

.carousel-btn:hover svg {
  stroke: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-leaf-edge);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-display-medium);
  font-size: 16px;
  color: var(--color-forest-night);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  aspect-ratio: 16/12;
  border: 2px solid rgba(34, 197, 94, 0.2);
  clip-path: polygon(0 4%, 96% 0, 100% 4%, 100% 96%, 4% 100%, 0 96%);
}

.contact-form {
  background: var(--color-morning-mist);
  padding: 48px;
  border: 2px solid var(--color-leaf-edge);
  clip-path: polygon(0 2%, 98% 0, 100% 2%, 100% 98%, 2% 100%, 0 98%);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display-medium);
  font-size: 14px;
  color: var(--color-forest-night);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: white;
  border: 2px solid rgba(34, 197, 94, 0.25);
  font-size: 15px;
  color: var(--color-deep-moss);
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-leaf-edge);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(22, 101, 52, 0.5);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--color-leaf-edge), var(--color-deep-moss));
  color: white;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.form-submit:hover {
  box-shadow: 0 12px 48px rgba(34, 197, 94, 0.42);
  transform: translateY(-2px);
}

.site-footer {
  background: var(--color-willow-cream);
  border-top: 2px solid var(--color-leaf-edge);
  padding: 64px 0 32px;
}

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

.footer-col h4 {
  font-family: var(--font-display-medium);
  font-size: 16px;
  color: var(--color-forest-night);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a {
  font-size: 14px;
  color: var(--color-deep-moss);
  transition: all var(--transition-smooth);
}

.footer-col li a:hover {
  color: var(--color-leaf-edge);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display-extended);
  font-size: 14px;
  color: var(--color-forest-night);
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-leaf-edge);
}

.footer-desc {
  font-size: 14px;
  color: var(--color-deep-moss);
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-deep-moss);
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-leaf-edge);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-deep-moss);
}

.cookie-banner {
  position: fixed;
  bottom: 100px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  padding: 24px;
  background: linear-gradient(135deg, var(--color-morning-mist), var(--color-pale-sage));
  border: 2px solid var(--color-leaf-edge);
  border-radius: 8px;
  z-index: 9997;
  box-shadow: 0 16px 64px rgba(34, 197, 94, 0.25);
}

.cookie-banner h4 {
  font-family: var(--font-display-medium);
  font-size: 16px;
  color: var(--color-forest-night);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--color-deep-moss);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-accept,
.cookie-decline {
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.cookie-accept {
  background: var(--color-leaf-edge);
  color: white;
}

.cookie-accept:hover {
  background: var(--color-deep-moss);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--color-deep-moss);
  color: var(--color-deep-moss);
}

.cookie-decline:hover {
  background: rgba(22, 101, 52, 0.1);
}

.hidden {
  display: none !important;
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title .h2 {
  margin-bottom: 16px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-deep-moss);
}

.content-p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--color-deep-moss);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 64px;
    min-height: auto;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-small {
    grid-template-columns: 1fr;
    padding: 120px 32px 64px;
    min-height: auto;
  }
  
  .internal-hero-visual {
    display: none;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hard-cuts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-visual {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .floating-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero,
  .hero-small {
    padding: 96px 24px 64px;
  }
  
  .h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    width: 100%;
    justify-content: center;
  }
  
  .hero-secondary {
    display: block;
    margin: 16px 0 0;
    text-align: center;
    margin-left: 0;
  }
  
  .section {
    padding: 64px 0;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card.wide,
  .bento-card.large {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  
  .hard-cuts-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    flex-direction: column;
    gap: 24px;
  }
  
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card:hover {
    flex-grow: 0;
  }
  
  .review-card {
    flex: 0 0 100%;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 80px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}