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

:root {
  --asphalt-white: #F8FAFC;
  --base-gray: #F1F5F9;
  --gravel-ivory: #E2E8F0;
  --deep-asphalt: #134E4A;
  --asphalt: #155E75;
  --construction-cyan: #06B6D4;
  --deep-teal: #0891B2;
  --text-primary: #134E4A;
  --text-secondary: #155E75;
  --text-muted: #0E7490;
  --font-heading: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-secondary);
  background-color: var(--asphalt-white);
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.section {
  padding: 96px 0;
  position: relative;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-flow: dense;
  gap: 24px;
}

.masonry-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item-wide {
  grid-column: span 2;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--deep-asphalt);
}

h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.86;
  color: var(--deep-asphalt);
  margin-bottom: 24px;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--deep-asphalt);
}

h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--deep-asphalt);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--construction-cyan), var(--deep-teal));
  color: white;
  box-shadow: 0 12px 48px rgba(6, 182, 212, 0.42);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 64px rgba(6, 182, 212, 0.52);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep-asphalt);
  border: 2px solid var(--construction-cyan);
}

.btn-secondary:hover {
  background: var(--construction-cyan);
  color: white;
}

.fluid-canvas {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.04) 0%, rgba(20, 184, 166, 0.06) 25%, rgba(6, 182, 212, 0.04) 50%, rgba(20, 184, 166, 0.06) 75%, rgba(6, 182, 212, 0.04) 100%);
  background-size: 300% 300%;
  animation: fluid-move 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes fluid-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.shape-morph-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.shape-expand {
  transition: all 0.94s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shape-expand:hover {
  transform: scale(1.12);
}

.glassy {
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(32px) saturate(140%);
  -webkit-backdrop-filter: blur(32px) saturate(140%);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-ring {
  position: fixed;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(6, 182, 212, 0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.16s ease-out;
  mix-blend-mode: difference;
}

body.paused-animation * {
  animation: none !important;
  transition: none !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 9999;
  transition: all 0.3s ease-out;
}

header.scrolled,
header.transparent {
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.16);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 48px;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  stroke: var(--construction-cyan);
  stroke-width: 2.5;
  fill: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-asphalt);
  letter-spacing: -0.01em;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: var(--deep-asphalt);
  cursor: pointer;
  position: relative;
  padding: 8px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--construction-cyan);
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover {
  color: var(--construction-cyan);
}

.mega-dropdown {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  height: 50vh;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9998;
}

.mega-dropdown.active {
  display: grid;
}

.dropdown-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--construction-cyan);
  margin-bottom: 16px;
}

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

.dropdown-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
}

.dropdown-col ul li a:hover {
  color: var(--construction-cyan);
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(6, 182, 212, 0.24);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(24px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10000;
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--construction-cyan);
  stroke-width: 2.5;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 10001;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 24px;
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--deep-asphalt);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 32px;
  height: 32px;
  stroke: var(--deep-asphalt);
  stroke-width: 2;
}

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

.hero-content {
  padding-left: 48px;
  z-index: 1;
}

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

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

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  height: 100vh;
  background: var(--gravel-ivory);
  border-left: 3px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 48px 192px rgba(6, 182, 212, 0.14);
}

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

.floating-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--construction-cyan);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) { top: 20%; left: 15%; }
.floating-circle:nth-child(2) { top: 60%; left: 70%; animation-delay: 2s; }
.floating-circle:nth-child(3) { top: 40%; left: 40%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

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

.card {
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  position: relative;
  transition: all 0.82s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.card:hover {
  transform: scale(1.02);
  z-index: 86;
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 78, 74, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: white;
}

.card-price {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--construction-cyan);
  margin-top: 4px;
}

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

.service-card {
  background: white;
  border: 2px solid var(--construction-cyan);
  border-radius: 8px 16px 24px 32px;
  padding: 24px;
  transition: all 0.32s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  stroke: var(--construction-cyan);
  stroke-width: 2;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  margin-bottom: 24px;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--deep-asphalt);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.process-timeline {
  display: flex;
  gap: 48px;
  overflow-x: auto;
  padding: 48px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}

.step-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--construction-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-asphalt);
  transition: all 0.32s ease;
}

.process-step:hover .step-circle {
  transform: scale(1.12);
  background: var(--construction-cyan);
  color: white;
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-asphalt);
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

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

.benefit-card {
  background: white;
  border: 2px solid var(--gravel-ivory);
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  transition: all 0.32s ease;
}

.benefit-card:hover {
  border-color: var(--construction-cyan);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.15);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  stroke: var(--construction-cyan);
  stroke-width: 2;
}

.benefit-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--deep-asphalt);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.marquee {
  display: flex;
  gap: 72px;
  overflow-x: auto;
  padding: 32px 48px;
  background: var(--deep-asphalt);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: white;
  border: 2px solid var(--construction-cyan);
  border-radius: 8px;
  padding: 16px 24px;
}

.marquee-item span {
  font-size: 16px;
  color: var(--construction-cyan);
}

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

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

.team-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.32s ease;
}

.team-item:hover,
.team-item.active {
  background: rgba(6, 182, 212, 0.1);
}

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

.team-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.team-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.team-photo {
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.faq-item {
  border: 2px solid var(--gravel-ivory);
  border-radius: 8px 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-asphalt);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--construction-cyan);
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--construction-cyan);
  stroke-width: 2;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
}

.reviews-carousel {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  padding: 48px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.review-card {
  background: white;
  border: 2px solid var(--gravel-ivory);
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  transition: all 0.32s ease;
  flex-shrink: 0;
  width: 350px;
  scroll-snap-align: center;
}

.review-card.active {
  transform: scale(1.15);
  z-index: 100;
  border-color: var(--construction-cyan);
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
}

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

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

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

.review-author {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-asphalt);
}

.review-date {
  font-size: 13px;
  color: var(--text-muted);
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.carousel-nav {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--construction-cyan);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--construction-cyan);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--construction-cyan);
  stroke-width: 2;
}

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

.carousel-prev,
.carousel-next {
  position: relative;
  z-index: 10;
}

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

.contact-info h2 {
  margin-bottom: 24px;
}

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

.contact-icon {
  width: 24px;
  height: 24px;
  stroke: var(--construction-cyan);
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  color: var(--deep-asphalt);
}

.map-container {
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  margin-top: 24px;
}

.contact-form {
  background: white;
  border: 2px solid var(--construction-cyan);
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-asphalt);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  background: white;
  border: 2px solid var(--gravel-ivory);
  border-radius: 8px 16px 24px 32px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--construction-cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

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

.form-submit {
  width: 100%;
}

footer {
  background: var(--gravel-ivory);
  border-top: 3px solid var(--construction-cyan);
  padding: 64px 0 32px;
}

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

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--construction-cyan);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
}

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

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

.footer-logo svg {
  width: 36px;
  height: 36px;
  stroke: var(--construction-cyan);
  stroke-width: 2.5;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-asphalt);
}

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

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

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: white;
  border: 2px solid var(--construction-cyan);
  border-radius: 8px 16px 24px 32px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  display: block;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--construction-cyan);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--deep-teal);
}

.cookie-btn-decline {
  background: white;
  color: var(--text-secondary);
  border: 2px solid var(--gravel-ivory);
}

.cookie-btn-decline:hover {
  border-color: var(--construction-cyan);
  color: var(--construction-cyan);
}

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

.thank-you-icon {
  width: 80px;
  height: 80px;
  stroke: var(--construction-cyan);
  stroke-width: 2;
  margin-bottom: 32px;
}

.thank-you h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.thank-you p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 96px 24px;
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content a {
  color: var(--construction-cyan);
}

.legal-content a:hover {
  text-decoration: underline;
}

.error-message {
  color: #dc2626;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: #dc2626;
}

.form-group.error .error-message {
  display: block;
}

.success-message {
  text-align: center;
  padding: 48px;
}

.success-message h3 {
  font-size: 1.5rem;
  color: var(--deep-asphalt);
  margin-bottom: 12px;
}

.success-message p {
  font-size: 16px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-content {
    padding: 120px 24px 48px;
  }
  
  .hero-visual {
    height: 50vh;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-section,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 24px;
  }
  
  nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .section {
    padding: 64px 0;
  }
  
  h1 {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }
  
  .container {
    padding: 0 16px;
  }
  
  .services-grid,
  .stats-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  
  .masonry-item-large,
  .masonry-item-wide {
    grid-column: span 1;
  }
  
  .process-timeline {
    flex-direction: column;
    min-width: auto;
    padding: 24px;
  }
  
  .process-step {
    min-width: auto;
  }
  
  .reviews-carousel {
    flex-direction: row;
    gap: 16px;
    padding: 24px 16px;
  }
  
  .review-card {
    width: calc(100vw - 100px);
    max-width: 350px;
  }
  
  .review-card.active {
    transform: scale(1);
  }
  
  .review-card:not(.active) {
    transform: scale(0.95);
    opacity: 0.8;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}