@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Space+Mono:wght@400;700&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --warm-canvas: #FFFBF5;
  --process-cream: #FFF7ED;
  --soft-terracotta: #FEF3C7;
  --deep-burnt: #78350F;
  --amber-core: #B45309;
  --neon-amber: #F59E0B;
  --burnt-orange: #D97706;
  --text-primary: #78350F;
  --text-secondary: #B45309;
  --text-accent: #9A3412;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-primary);
  background: var(--warm-canvas);
  overflow-x: hidden;
}

main {
  padding-left: 88px;
}

strong, b, p {
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--deep-burnt);
  line-height: 0.84;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(4.5rem, 9vw, 8.5rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #EA580C;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 56px;
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(254, 247, 235, 0.96));
  backdrop-filter: blur(64px);
  border-right: 2.5px solid rgba(249, 115, 22, 0.28);
  box-shadow: 12px 0 48px rgba(249, 115, 22, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 12px;
  transition: width 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.sidebar:hover,
.sidebar.expanded {
  width: 260px;
  background: rgba(255, 250, 242, 1);
}

.sidebar-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.sidebar-logo-full {
  display: none;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-accent);
  letter-spacing: -0.015em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.sidebar:hover .sidebar-logo-full,
.sidebar.expanded .sidebar-logo-full {
  display: block;
  animation: fadeIn 0.3s ease;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.nav-item {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
}

.nav-item:hover {
  color: var(--neon-amber);
  text-decoration: underline 2px var(--neon-amber);
  transform: scale(1.06);
}

.nav-item svg {
  width: 18px;
  height: 18px;
  display: none;
  stroke: var(--amber-core);
  flex-shrink: 0;
}

.sidebar:hover .nav-item svg,
.sidebar.expanded .nav-item svg {
  display: block;
  animation: slideIn 0.3s ease;
}

.nav-item span {
  display: none;
}

.sidebar:hover .nav-item span,
.sidebar.expanded .nav-item span {
  display: inline;
}

.sidebar-cta {
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--neon-amber), var(--burnt-orange));
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  border: none;
  box-shadow: 0 14px 56px rgba(249, 115, 22, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 72px rgba(249, 115, 22, 0.55);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: center;
  position: relative;
  background: var(--warm-canvas);
}

.hero-content {
  padding-left: 72px;
  padding-right: 40px;
  z-index: 2;
}

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

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 22px 48px;
  background: linear-gradient(135deg, var(--neon-amber), var(--burnt-orange));
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  border: none;
  box-shadow: 0 20px 80px rgba(249, 115, 22, 0.45);
  cursor: pointer;
  transition: all 0.32s ease;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 28px 112px rgba(249, 115, 22, 0.55);
}

.hero-secondary {
  display: block;
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 252, 245, 1), rgba(254, 247, 235, 1));
  border: 2.5px solid rgba(249, 115, 22, 0.24);
}

.structured-frame {
  position: absolute;
  inset: 40px;
  border: 1.8px dashed rgba(249, 115, 22, 0.3);
  pointer-events: none;
}

.hero-image {
  width: 70%;
  height: 75%;
  object-fit: cover;
  box-shadow: 0 48px 192px rgba(249, 115, 22, 0.18);
  border: 2px solid rgba(249, 115, 22, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2.8s infinite;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-secondary);
}

.scroll-indicator svg {
  display: block;
  margin: 8px auto 0;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.section {
  padding: 112px 72px;
  background: var(--warm-canvas);
  position: relative;
}

.section-dark {
  background: var(--process-cream);
}

.section-header {
  margin-bottom: 72px;
}

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

.section-header p {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  color: var(--text-accent);
  max-width: 600px;
}

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

.service-card {
  position: relative;
  padding: 24px;
  background: var(--warm-canvas);
  border: 2px solid rgba(249, 115, 22, 0.22);
  box-shadow: 0 32px 128px rgba(249, 115, 22, 0.12);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.8px dashed rgba(249, 115, 22, 0.3);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 56px rgba(249, 115, 22, 0.42);
  z-index: 86;
  border-color: var(--neon-amber);
}

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

.service-card.wide {
  grid-column: span 2;
}

.service-card h3 {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-burnt);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}

.about-sticky {
  position: sticky;
  top: 112px;
  height: fit-content;
}

.timeline {
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 2px solid rgba(249, 115, 22, 0.3);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--neon-amber);
  border: 2px solid var(--warm-canvas);
}

.timeline-item h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-burnt);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

.process-graph {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.32s ease;
}

.process-node:hover .node-circle {
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
  transform: scale(1.1);
}

.node-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--warm-canvas);
  border: 2px solid var(--neon-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.32s ease;
  box-shadow: 0 20px 80px rgba(249, 115, 22, 0.2);
}

.node-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--neon-amber);
}

.process-node span {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.process-line {
  width: 60px;
  height: 2px;
  background: var(--burnt-orange);
}

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

.advantage-card {
  padding: 32px;
  background: var(--warm-canvas);
  border: 2px solid rgba(249, 115, 22, 0.22);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage-card:hover {
  flex-grow: 1.35;
  box-shadow: 0 0 56px rgba(249, 115, 22, 0.42);
  z-index: 86;
  border-color: var(--neon-amber);
}
advantage-card:hover {
  flex-grow: 1.35;
  box-shadow: 0 0 56px rgba(249, 115, 22, 0.42);
  z-index: 86;
  border-color: var(--neon-amber);
}

.service-card.visible,
.advantage-card.visible,
.timeline-item.visible,
.process-node.visible {
  opacity: 1;
  transform: translateY(0);
}

.advantage-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.advantage-card h4 {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

.stats-marquee {
  display: flex;
  gap: 72px;
  overflow: hidden;
  padding: 40px 0;
}

.stats-marquee::before,
.stats-marquee::after {
  content: '';
  flex-shrink: 0;
}

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

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding: 16px 24px;
  background: var(--warm-canvas);
  border: 2px solid var(--neon-amber);
}

.stat-item .number {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--deep-burnt);
}

.stat-item .label {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--text-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

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

.team-member {
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.team-member:hover,
.team-member.active {
  background: var(--process-cream);
  border-left-color: var(--neon-amber);
}

.team-member h4 {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-member p {
  font-size: 13px;
  color: var(--text-secondary);
}

.team-photo {
  position: relative;
  min-height: 400px;
}

.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-photo img.active {
  opacity: 1;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid rgba(249, 115, 22, 0.22);
  margin-bottom: 12px;
  background: var(--warm-canvas);
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: var(--neon-amber);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--neon-amber);
  transition: transform 0.4s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

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

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 0;
  overflow: visible;
}

.review-prev,
.review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  background: var(--warm-canvas) !important;
  border: 2px solid var(--neon-amber) !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

.review-prev {
  left: -24px;
}

.review-next {
  right: -24px;
}

.review-prev:hover,
.review-next:hover {
  background: var(--neon-amber) !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
}

.review-prev:hover svg,
.review-next:hover svg {
  stroke: white;
}

.review-card {
  flex: 0 0 300px;
  padding: 24px;
  background: var(--warm-canvas);
  border: 2px solid rgba(249, 115, 22, 0.22);
  transition: all 0.4s ease;
  z-index: 80;
  transform: scale(0.85);
  opacity: 0.7;
}

.review-card.active {
  transform: scale(1.15);
  z-index: 100;
  opacity: 1;
  border-color: var(--neon-amber);
  box-shadow: 0 0 56px rgba(249, 115, 22, 0.42);
}

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

.review-card .quote {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}

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

.review-card .author img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.review-card .author-name {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-card .author-date {
  font-size: 12px;
  color: var(--text-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-info a {
  color: var(--neon-amber);
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  border: 2px solid var(--neon-amber);
  background: var(--warm-canvas);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burnt-orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

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

.submit-btn {
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--neon-amber), var(--burnt-orange));
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.32s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 56px rgba(249, 115, 22, 0.5);
}

.map-container {
  width: 100%;
  height: 300px;
  border: 2px solid rgba(249, 115, 22, 0.22);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--process-cream);
  border-top: 3px solid var(--neon-amber);
  padding: 72px 72px 32px;
  margin-left: 88px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer h4 {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-amber);
}

.footer-contact p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--neon-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 104px;
  z-index: 9998;
  max-width: 480px;
  padding: 24px;
  background: rgba(255, 251, 245, 0.98);
  backdrop-filter: blur(64px);
  border: 2px solid rgba(249, 115, 22, 0.28);
  box-shadow: 0 40px 160px rgba(249, 115, 22, 0.14);
}

.cookie-banner h4 {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--neon-amber), var(--burnt-orange));
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  border: 2px solid var(--neon-amber);
  color: var(--neon-amber);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(254, 247, 235, 0.98));
  backdrop-filter: blur(64px);
  border: 2px solid rgba(249, 115, 22, 0.28);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: var(--neon-amber);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(255, 251, 245, 0.99);
  backdrop-filter: blur(64px);
  padding: 80px 24px 40px;
}

.mobile-overlay.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--neon-amber);
  text-decoration: underline;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-close svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-primary);
}

@media (max-width: 1024px) {
  main {
    padding-left: 0;
  }
  
  .section {
    padding: 72px 28px;
  }
  
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 40px 28px;
  }
  
  .hero-visual {
    height: 50vh;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-section,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    margin-left: 0;
    padding: 48px 28px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .sidebar {
    display: none;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }
  
  .services-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.large,
  .service-card.wide {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .process-graph {
    flex-direction: column;
  }
  
  .process-line {
    width: 2px;
    height: 40px;
  }
  
  .reviews-carousel {
    flex-direction: column;
    gap: 40px;
  }

  .review-card {
    width: 100%;
  }

  .review-prev,
  .review-next {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .review-prev:hover,
  .review-next:hover {
    transform: scale(1.1);
  }

  .review-prev {
    left: auto;
  }

  .review-next {
    right: auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}