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

:root {
  --clean-white: #FAFBFA;
  --polish-mist: #F2F4F2;
  --chrome-light: #EAECEA;
  --deep-carbon: #2A2A28;
  --paint-gray: #3A3A38;
  --automotive-orange: #B06030;
  --deep-rust: #904828;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-soft: 0 14px 56px rgba(140,90,50,0.20);
  --shadow-hover: 0 20px 80px rgba(140,90,50,0.40);
  --shadow-card: 0 44px 160px rgba(140,90,50,0.12);
  --transition-smooth: 0.48s cubic-bezier(0.34,1.56,0.64,1);
  --transition-ease: 0.32s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--clean-white);
  color: var(--paint-gray);
  line-height: 1.78;
  font-size: 17px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(250,248,245,0.97) 0%,
    rgba(245,243,240,0.96) 25%,
    rgba(255,252,248,0.97) 50%,
    rgba(248,246,243,0.96) 75%,
    rgba(252,250,247,0.97) 100%
  );
  animation: fluidCanvas 18s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes fluidCanvas {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.96;
  }
  25% {
    background-position: 50% 100%;
    opacity: 0.98;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.96;
  }
  75% {
    background-position: 50% 0%;
    opacity: 0.98;
  }
}

strong, p {
  color: inherit;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.glow-cursor {
  position: fixed;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(140,90,50,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease-out;
  mix-blend-mode: multiply;
}

.floating-pill {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  z-index: 9999;
  background: rgba(250,251,250,0.99);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  border: 2px solid rgba(140,90,50,0.14);
  box-shadow: var(--shadow-soft);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: all 0.3s ease-out;
}

.floating-pill.scrolled {
  border-color: rgba(140,90,50,0.28);
  box-shadow: 0 14px 56px rgba(140,90,50,0.32);
}

.pill-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 28px;
}

.pill-logo svg {
  width: 28px;
  height: 28px;
}

.pill-logo span {
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-carbon);
  letter-spacing: -0.02em;
}

.pill-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.pill-nav a {
  font-weight: 500;
  font-size: 10px;
  color: var(--deep-carbon);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.pill-nav a:hover {
  color: var(--automotive-orange);
  background: rgba(140,90,50,0.06);
  transform: scale(1.08);
}

.pill-nav a.active {
  color: var(--automotive-orange);
}

.pill-cta {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
  font-weight: 700;
  font-size: 10px;
  border-radius: 24px;
  box-shadow: 0 14px 56px rgba(140,90,50,0.36);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pill-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 64px rgba(140,90,50,0.44);
}

.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  background: rgba(250,251,250,0.99);
  border: 1px solid rgba(140,90,50,0.2);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep-carbon);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250,251,250,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}

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

.mobile-overlay a {
  font-weight: 700;
  font-size: 20px;
  color: var(--deep-carbon);
  transition: all 0.3s ease;
}

.mobile-overlay a:hover {
  color: var(--automotive-orange);
}

.mobile-overlay .mobile-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-overlay .mobile-logo span {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-carbon);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: var(--deep-carbon);
}

.mobile-overlay .mobile-contact {
  position: absolute;
  bottom: 60px;
  text-align: center;
}

.mobile-overlay .mobile-contact p {
  font-size: 14px;
  color: var(--paint-gray);
  margin-bottom: 8px;
}

.page-content {
  padding-top: 90px;
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 10;
}

.hero-content h1 {
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 11rem);
  color: var(--deep-carbon);
  line-height: 0.84;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-content h1 .char {
  display: inline-block;
  animation: slideUp 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
  opacity: 0;
  transform: translateY(40px) scale(0.78);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-content .subtitle {
  font-size: 18px;
  color: var(--paint-gray);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 52px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 88px rgba(140,90,50,0.48);
}

.hero-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-weight: 500;
  font-size: 13px;
  color: var(--deep-carbon);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

.hero-secondary svg {
  width: 16px;
  height: 16px;
}

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

.hero-visual .fluid-frame {
  position: relative;
  border: 2px solid rgba(140,90,50,0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/10;
}

.hero-visual .fluid-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(250,248,245,0.9) 0%, 
    rgba(245,243,240,0.85) 50%, 
    rgba(252,250,247,0.9) 100%);
  animation: shimmer 18s ease-in-out infinite;
  z-index: 1;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.9;
    background-position: 0% 50%;
  }
  50% {
    opacity: 1;
    background-position: 100% 50%;
  }
}

.hero-visual .fluid-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

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

.scroll-indicator span {
  font-size: 10px;
  font-weight: 500;
  color: var(--paint-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--automotive-orange);
}

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

.section {
  padding: 100px 56px;
}

.section-title {
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--deep-carbon);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--paint-gray);
  line-height: 1.78;
  max-width: 600px;
  margin-bottom: 64px;
}

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

.bento-card {
  background: rgba(250,251,250,0.97);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  z-index: 80;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(140,90,50,0.08);
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--automotive-orange), var(--deep-rust));
  transform: scaleX(0);
  transition: transform var(--transition-ease);
}

.bento-card:hover {
  z-index: 96;
  transform: scale(1.04);
  box-shadow: 0 44px 160px rgba(140,90,50,0.16);
  border-color: rgba(140,90,50,0.2);
}

.bento-card:hover::before {
  transform: scaleX(1);
}

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

.bento-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.bento-card.large img {
  height: 280px;
}

.bento-card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-carbon);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 14px;
  color: var(--paint-gray);
  line-height: 1.64;
}

.bento-card .price {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--automotive-orange);
}

.bento-card .bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
  font-weight: 600;
  font-size: 12px;
  border-radius: 20px;
  transition: all var(--transition-ease);
}

.bento-card .bento-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(140,90,50,0.32);
}

.process-node-graph {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.process-node {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 80;
}

.process-node .node-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clean-white);
  border: 2px solid rgba(140,90,50,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
  position: relative;
}

.process-node:hover .node-icon {
  z-index: 96;
  border-color: var(--automotive-orange);
  transform: scale(1.15);
  box-shadow: 0 16px 64px rgba(140,90,50,0.24);
}

.process-node .node-content {
  flex: 1;
}

.process-node .node-number {
  font-weight: 700;
  font-size: 12px;
  color: var(--automotive-orange);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.process-node h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-carbon);
  margin-bottom: 8px;
}

.process-node p {
  font-size: 15px;
  color: var(--paint-gray);
  line-height: 1.64;
}

.process-connector {
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--automotive-orange), rgba(140,90,50,0.2));
}

.node-icon svg {
  width: 36px;
  height: 36px;
  color: var(--automotive-orange);
}

.achievements-marquee {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.achievements-marquee::before,
.achievements-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 10;
}

.achievements-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--clean-white), transparent);
}

.achievements-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--clean-white), transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 30s linear infinite;
}

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

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 48px;
  background: rgba(250,251,250,0.97);
  border-radius: 16px;
  border: 1px solid rgba(140,90,50,0.1);
  position: relative;
  flex-shrink: 0;
}

.marquee-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-ease);
}

.marquee-item:hover::before {
  opacity: 1;
}

.marquee-item:hover {
  z-index: 96;
}

.marquee-item span {
  font-weight: 700;
  font-size: 32px;
  color: var(--deep-carbon);
  letter-spacing: -0.02em;
}

.marquee-item p {
  font-size: 13px;
  color: var(--paint-gray);
}

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

.advantage-card {
  background: rgba(250,251,250,0.97);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 80;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(140,90,50,0.08);
}

.advantage-card:hover {
  z-index: 96;
  flex-grow: 1.4;
  transform: translateY(-8px);
  box-shadow: 0 44px 160px rgba(140,90,50,0.16);
}

.advantage-card .advantage-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.advantage-card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-carbon);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--paint-gray);
  line-height: 1.64;
}

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

.team-card {
  background: rgba(250,251,250,0.97);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 80;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(140,90,50,0.08);
}

.team-card:hover {
  z-index: 96;
  transform: scale(1.05);
  box-shadow: 0 44px 160px rgba(140,90,50,0.16);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-carbon);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--automotive-orange);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: var(--paint-gray);
  line-height: 1.64;
}

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

.faq-item {
  background: rgba(250,251,250,0.97);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(140,90,50,0.08);
  overflow: hidden;
  position: relative;
  z-index: 80;
  transition: all var(--transition-ease);
}

.faq-item:hover {
  z-index: 96;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--automotive-orange);
  transform: scaleY(0);
  transition: transform var(--transition-ease);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-carbon);
}

.faq-question:hover {
  color: var(--automotive-orange);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--polish-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--automotive-orange);
  transition: all var(--transition-ease);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--automotive-orange);
  color: white;
}

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

.faq-answer-content {
  padding: 0 32px 24px;
  font-size: 15px;
  color: var(--paint-gray);
  line-height: 1.78;
}

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

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: rgba(250,251,250,0.97);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid rgba(140,90,50,0.08);
  position: relative;
  z-index: 80;
  transition: all var(--transition-smooth);
}

.review-card:nth-child(odd) {
  transform: scale(0.85);
  z-index: 88;
}

.review-card:nth-child(3) {
  transform: scale(1.15);
  z-index: 100;
  box-shadow: 0 44px 160px rgba(140,90,50,0.16);
}

.review-card:nth-child(even) {
  transform: scale(0.85);
  z-index: 88;
}

.review-card:hover {
  z-index: 96;
  transform: scale(1.05);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--automotive-orange);
}

.review-card .review-text {
  font-size: 15px;
  color: var(--paint-gray);
  line-height: 1.64;
  margin-bottom: 16px;
}

.review-card .review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-carbon);
}

.review-card .review-car {
  font-size: 12px;
  color: var(--automotive-orange);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clean-white);
  border: 1px solid rgba(140,90,50,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-ease);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--automotive-orange);
  color: white;
  border-color: var(--automotive-orange);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

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

.contact-info {
  position: relative;
  z-index: 80;
}

.contact-info h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-carbon);
  margin-bottom: 24px;
}

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

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--automotive-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item p {
  font-size: 15px;
  color: var(--paint-gray);
  line-height: 1.64;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--deep-carbon);
  margin-bottom: 4px;
}

.contact-form {
  background: rgba(250,251,250,0.97);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  z-index: 80;
  border: 1px solid rgba(140,90,50,0.08);
}

.contact-form h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-carbon);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--deep-carbon);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--polish-mist);
  border-radius: 12px;
  font-size: 15px;
  color: var(--deep-carbon);
  transition: all var(--transition-ease);
  background: var(--clean-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--automotive-orange);
  box-shadow: 0 0 0 4px rgba(140,90,50,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 16px;
  transition: all var(--transition-ease);
  box-shadow: 0 14px 56px rgba(140,90,50,0.28);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 72px rgba(140,90,50,0.36);
}

.page-hero {
  min-height: 55vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-content {
  padding-top: 120px;
}

.page-hero h1 {
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--deep-carbon);
  line-height: 0.84;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 17px;
  color: var(--paint-gray);
  line-height: 1.78;
  max-width: 520px;
}

.page-hero .hero-visual {
  padding-top: 120px;
}

.page-hero .hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.sticky-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.sticky-left {
  position: sticky;
  top: 0;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.sticky-left .color-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  transition: all var(--transition-smooth);
}

.color-swatch:hover {
  transform: scale(1.15);
  z-index: 96;
}

.scroll-right {
  padding: 80px 56px;
}

.scroll-right .content-block {
  margin-bottom: 64px;
}

.scroll-right h2 {
  font-weight: 700;
  font-size: 32px;
  color: var(--deep-carbon);
  margin-bottom: 16px;
}

.scroll-right p {
  font-size: 16px;
  color: var(--paint-gray);
  line-height: 1.78;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/2;
  z-index: 80;
  transition: all var(--transition-smooth);
}

.gallery-item:hover {
  z-index: 96;
  transform: scale(1.05);
  box-shadow: 0 44px 160px rgba(140,90,50,0.16);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(42,42,40,0.9), transparent);
}

.gallery-item .gallery-overlay span {
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.service-detail-section {
  padding: 80px 56px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.service-detail-content h2 {
  font-weight: 700;
  font-size: 36px;
  color: var(--deep-carbon);
  margin-bottom: 24px;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--paint-gray);
  line-height: 1.78;
  margin-bottom: 24px;
}

.service-detail-content .service-price {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
  font-weight: 700;
  font-size: 20px;
  border-radius: 16px;
}

.service-detail-images {
  display: grid;
  gap: 24px;
}

.service-detail-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(250,251,250,0.97);
  border-radius: 12px;
  border: 1px solid rgba(140,90,50,0.08);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--automotive-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  font-size: 14px;
  color: var(--deep-carbon);
  font-weight: 500;
}

.site-footer {
  background: var(--chrome-light);
  border-top: 3px solid var(--automotive-orange);
  padding: 80px 56px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-carbon);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 14px;
  color: var(--paint-gray);
  line-height: 1.64;
  margin-bottom: 12px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--paint-gray);
  transition: all var(--transition-ease);
}

.footer-col ul li a:hover {
  color: var(--automotive-orange);
}

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

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

.footer-logo span {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-carbon);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(140,90,50,0.1);
}

.footer-bottom p {
  font-weight: 700;
  font-size: 12px;
  color: var(--paint-gray);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--clean-white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 96px rgba(0,0,0,0.12);
  z-index: 9997;
  border: 1px solid rgba(140,90,50,0.1);
}

.cookie-banner h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-carbon);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--paint-gray);
  line-height: 1.64;
  margin-bottom: 20px;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  transition: all var(--transition-ease);
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
}

.cookie-btn.decline {
  background: var(--polish-mist);
  color: var(--deep-carbon);
}

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.thank-you-section h1 {
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--deep-carbon);
  margin-bottom: 24px;
}

.thank-you-section p {
  font-size: 18px;
  color: var(--paint-gray);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 40px;
}

.thank-you-section .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--automotive-orange), var(--deep-rust));
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  transition: all var(--transition-ease);
}

.thank-you-section .back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 72px rgba(140,90,50,0.36);
}

.legal-section {
  padding: 80px 56px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-section h1 {
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--deep-carbon);
  margin-bottom: 32px;
}

.legal-section h2 {
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-carbon);
  margin: 40px 0 16px;
}

.legal-section p {
  font-size: 16px;
  color: var(--paint-gray);
  line-height: 1.78;
  margin-bottom: 20px;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-section ul li {
  font-size: 16px;
  color: var(--paint-gray);
  line-height: 1.78;
  margin-bottom: 12px;
  list-style: disc;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}

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

.form-success {
  text-align: center;
  padding: 60px 40px;
}

.form-success svg {
  width: 80px;
  height: 80px;
  color: var(--automotive-orange);
  margin-bottom: 24px;
}

.form-success h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--deep-carbon);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 16px;
  color: var(--paint-gray);
  line-height: 1.64;
}

@media (max-width: 1200px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .floating-pill {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
    margin-top: 48px;
  }
  
  .hero-content .subtitle {
    margin: 0 auto 40px;
  }
  
  .page-hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
  }
  
  .page-hero .hero-visual {
    padding-top: 48px;
  }
  
  .sticky-split {
    grid-template-columns: 1fr;
  }
  
  .sticky-left {
    position: relative;
    height: auto;
    padding: 48px 24px;
  }
  
  .scroll-right {
    padding: 48px 24px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .section {
    padding: 64px 24px;
  }
  
  .services-bento {
    grid-template-columns: 1fr;
  }
  
  .bento-card.large {
    grid-column: span 1;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
  
  .cookie-banner .cookie-buttons {
    flex-direction: column;
  }
  
  .reviews-carousel {
    flex-direction: column;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .process-node {
    flex-direction: column;
    text-align: center;
  }
  
  .process-connector {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  
  .hero-cta {
    padding: 18px 32px;
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
}