@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --steel-blue-mist: #F0F4F8;
  --arctic-slate: #E5EEF3;
  --deep-slate: #1E293B;
  --cool-steel: #64748B;
  --faded-ice: #94A3B8;
  --hydraulic-teal: #0891B2;
  --industrial-steel: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--steel-blue-mist);
  color: var(--deep-slate);
  line-height: 1.75;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

ul, ol {
  list-style: none;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 72px;
  background: rgba(240, 244, 248, 0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 145, 178, 0.1);
  box-shadow: 0 8px 40px rgba(30, 41, 59, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--hydraulic-teal), var(--industrial-steel));
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-slate);
  letter-spacing: -0.02em;
}

.menu-btn {
  width: 120px;
  height: 44px;
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.15);
  color: var(--hydraulic-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-btn:hover {
  background: rgba(8, 145, 178, 0.15);
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.15);
}

.hero {
  min-height: 100vh;
  background: var(--arctic-slate);
  position: relative;
  overflow: hidden;
  padding: 140px 80px 100px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.15);
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(8, 145, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 145, 178, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  position: relative;
  z-index: 4;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-decor {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  stroke: rgba(8, 145, 178, 0.4);
  stroke-width: 2px;
  fill: none;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--deep-slate);
  letter-spacing: -0.02em;
  max-width: 480px;
  line-height: 1.1;
}

.hero-subtitle-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(8, 145, 178, 0.6);
  margin-top: 8px;
}

.hero-description {
  font-size: 17px;
  color: var(--cool-steel);
  line-height: 1.75;
  max-width: 440px;
  margin-top: 20px;
}

.hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero-marker {
  width: 12px;
  height: 12px;
  background: var(--hydraulic-teal);
}

.hero-line {
  width: 200px;
  height: 2px;
  background: var(--hydraulic-teal);
  margin-top: 16px;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}

.btn-primary {
  padding: 22px 48px;
  background: linear-gradient(135deg, var(--hydraulic-teal), #077594);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(8, 145, 178, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  padding: 20px 40px;
  background: transparent;
  border: 2px solid var(--deep-slate);
  color: var(--deep-slate);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--hydraulic-teal);
  color: var(--hydraulic-teal);
}

.hero-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  position: relative;
  height: 520px;
}

.hero-photo {
  object-fit: cover;
  filter: saturate(0.98);
}

.hero-photo-1 {
  grid-row: span 2;
  margin-top: -24px;
  margin-left: -20px;
  box-shadow: 0 24px 64px rgba(30, 41, 59, 0.1);
}

.hero-photo-2,
.hero-photo-3,
.hero-photo-4,
.hero-photo-5 {
  height: 248px;
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.1);
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
}

.hero-card-1 {
  top: 40px;
  right: 20px;
  z-index: 5;
}

.hero-card-2 {
  bottom: 40px;
  right: 20px;
  z-index: 4;
}

.hero-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep-slate);
}

.hero-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--hydraulic-teal);
}

section {
  padding: 120px 0 100px;
  position: relative;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-slate);
  margin-bottom: 16px;
}

.section-description {
  font-size: 16px;
  color: var(--cool-steel);
  line-height: 1.8;
}

.advantages-section {
  background: var(--deep-slate);
  color: white;
}

.advantages-section .section-title {
  color: white;
}

.advantages-section .section-description {
  color: rgba(255, 255, 255, 0.6);
}

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

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.1);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
  flex-grow: 1.5;
  background: white;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.12);
  border-color: rgba(8, 145, 178, 0.15);
}

.advantage-card:nth-child(2):hover ~ .advantage-card:nth-child(1),
.advantage-card:nth-child(3):hover ~ .advantage-card:nth-child(2),
.advantage-card:nth-child(3):hover ~ .advantage-card:nth-child(1) {
  flex-grow: 0.7;
  opacity: 0.85;
}

.advantage-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
}

.advantage-value {
  font-size: 44px;
  font-weight: 700;
  color: var(--deep-slate);
}

.advantage-card:hover .advantage-value {
  color: var(--hydraulic-teal);
}

.advantage-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cool-steel);
}

.process-section {
  background: var(--steel-blue-mist);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--hydraulic-teal), var(--industrial-steel), var(--hydraulic-teal));
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  width: calc(50% - 60px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  padding: 28px 32px;
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
}

.process-step:nth-child(odd) {
  margin-right: auto;
}

.process-step:nth-child(even) {
  margin-left: auto;
  margin-top: 80px;
}

.step-number {
  font-size: 36px;
  font-weight: 700;
  color: rgba(8, 145, 178, 0.12);
  margin-bottom: 6px;
}

.step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-slate);
}

.step-description {
  font-size: 14px;
  color: var(--cool-steel);
  margin-top: 8px;
  line-height: 1.6;
}

.step-photo {
  height: 100px;
  margin-top: 16px;
  object-fit: cover;
  filter: saturate(0.98);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--hydraulic-teal);
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--hydraulic-teal);
}

.contact-section {
  background: var(--arctic-slate);
}

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

.contact-form {
  padding: 80px 60px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  padding: 80px 48px;
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(30, 41, 59, 0.1);
  background: transparent;
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-color: var(--hydraulic-teal);
}

.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--faded-ice);
  margin-bottom: 8px;
}

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

.contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  stroke: var(--hydraulic-teal);
  stroke-width: 1.5;
  fill: none;
}

.contact-label {
  font-size: 15px;
  color: var(--cool-steel);
}

.contact-divider {
  height: 1px;
  background: rgba(8, 145, 178, 0.1);
  margin: 20px 0;
}

.testimonials-section {
  background: var(--arctic-slate);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
  padding: 0;
}

.testimonial-photo {
  height: 120px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}

.testimonial-content {
  padding: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--industrial-steel);
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--cool-steel);
  line-height: 1.65;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(8, 145, 178, 0.15);
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-slate);
}

.author-company {
  font-size: 12px;
  color: var(--faded-ice);
}

.testimonial-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--hydraulic-teal), var(--industrial-steel));
  margin-top: 16px;
}

.services-section {
  background: var(--steel-blue-mist);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  padding: 28px;
  box-shadow: 0 20px 56px rgba(30, 41, 59, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(8, 145, 178, 0.1);
  z-index: 10;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
}

.service-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-slate);
  margin-bottom: 6px;
}

.service-description {
  font-size: 13px;
  color: var(--cool-steel);
  line-height: 1.5;
}

.service-photo {
  height: 80px;
  margin-top: 12px;
  object-fit: cover;
  filter: saturate(0.98);
}

.about-section {
  background: var(--arctic-slate);
}

.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0;
}

.about-image {
  object-fit: cover;
  filter: saturate(0.98);
}

.about-content {
  padding: 80px 60px;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-slate);
  margin-bottom: 16px;
}

.team-section {
  background: var(--steel-blue-mist);
}

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

.team-card {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  background: white;
  border-color: rgba(8, 145, 178, 0.15);
  box-shadow: 0 20px 56px rgba(8, 145, 178, 0.08);
  z-index: 10;
}

.team-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
  flex-shrink: 0;
}

.team-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-slate);
}

.team-position {
  font-size: 12px;
  color: var(--faded-ice);
}

.team-chevron {
  width: 20px;
  height: 20px;
  margin-left: auto;
  stroke: rgba(8, 145, 178, 0.3);
  stroke-width: 2px;
  fill: none;
  transition: all 0.2s ease;
}

.team-card:hover .team-chevron {
  stroke: var(--hydraulic-teal);
  transform: translateX(4px);
}

.team-reveal {
  position: relative;
  min-height: 300px;
}

.team-photo {
  height: 320px;
  object-fit: cover;
  filter: saturate(0.98);
  box-shadow: 0 24px 64px rgba(30, 41, 59, 0.12);
}

.team-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 12px 24px;
  background: var(--hydraulic-teal);
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.team-bio {
  font-size: 14px;
  color: var(--cool-steel);
  line-height: 1.6;
  padding-top: 16px;
}

.faq-section {
  background: var(--steel-blue-mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 80px;
}

.faq-panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
}

.faq-panel:nth-child(odd) {
  align-self: start;
}

.faq-panel:nth-child(even) {
  align-self: end;
  margin-top: 24px;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.faq-icon {
  width: 44px;
  height: 44px;
  margin-right: 16px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
}

.faq-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-slate);
  flex-grow: 1;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--faded-ice);
  stroke-width: 2px;
  fill: none;
  transition: all 0.3s ease;
}

.faq-photo {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-answer.active {
  display: block;
}

.faq-panel.active .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--hydraulic-teal);
}

.faq-panel.active {
  border-left: 4px solid var(--hydraulic-teal);
}

.faq-extended-photo {
  height: 180px;
  object-fit: cover;
  margin-top: 16px;
}

.faq-extended-text {
  font-size: 16px;
  color: var(--cool-steel);
  line-height: 1.75;
  margin-top: 12px;
}

.faq-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--hydraulic-teal);
  color: white;
  font-weight: 700;
}

.achievements-section {
  background: var(--arctic-slate);
}

.achievements-stack {
  max-width: 900px;
  margin: 48px auto 0;
}

.achievement-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(8, 145, 178, 0.08);
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
  padding: 0;
  margin-bottom: -80px;
  display: flex;
  align-items: center;
}

.achievement-icon {
  width: 48px;
  height: 48px;
  margin: 28px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
  flex-shrink: 0;
}

.achievement-content {
  padding: 28px 40px;
  flex-grow: 1;
}

.achievement-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-slate);
}

.achievement-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--hydraulic-teal);
}

.achievement-subtitle {
  font-size: 12px;
  color: var(--cool-steel);
  margin-top: 4px;
}

.achievement-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--faded-ice);
}

.achievement-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--hydraulic-teal), var(--industrial-steel));
  margin-top: 0;
}

.gallery-section {
  background: var(--steel-blue-mist);
}

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

.gallery-photo {
  height: 240px;
  object-fit: cover;
  filter: saturate(0.98);
  transition: transform 0.3s ease;
}

.gallery-photo:hover {
  transform: scale(1.02);
}

footer {
  background: var(--deep-slate);
  color: white;
  padding: 80px 0 40px;
}

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

.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--faded-ice);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--hydraulic-teal);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: var(--faded-ice);
}

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

.footer-legal a {
  font-size: 12px;
  color: var(--faded-ice);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 41, 59, 0.98);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9000;
}

.cookie-text {
  font-size: 13px;
  color: white;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

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

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.page-hero {
  height: 280px;
  background: var(--steel-blue-mist);
  position: relative;
  overflow: hidden;
  padding: 140px 40px 60px;
}

.page-hero-content {
  max-width: 560px;
}

.breadcrumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--faded-ice);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-slate);
  letter-spacing: -0.02em;
}

.page-title-decor {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--hydraulic-teal);
  margin-right: 12px;
  vertical-align: middle;
}

.page-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.page-marker {
  width: 8px;
  height: 8px;
  background: var(--hydraulic-teal);
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--arctic-slate);
  text-align: center;
  padding: 140px 40px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
}

.thank-you-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-slate);
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 16px;
  color: var(--cool-steel);
}

.legal-section {
  background: var(--steel-blue-mist);
  padding: 120px 0;
}

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

.legal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-slate);
  margin-bottom: 24px;
}

.legal-text {
  font-size: 15px;
  color: var(--cool-steel);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mobile-menu {
  display: none;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(240, 244, 248, 0.98);
  backdrop-filter: blur(24px);
  z-index: 9999;
}

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

.modal-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min 600px;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.99);
  z-index: 10000;
  box-shadow: 0 32px 80px rgba(30, 41, 59, 0.15);
  border: 1px solid rgba(8, 145, 178, 0.1);
  padding: 48px 56px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.modal-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-slate);
}

.modal-close {
  width: 44px;
  height: 44px;
  background: rgba(8, 145, 178, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close svg {
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
}

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

.nav-item {
  padding: 16px 20px;
  background: rgba(240, 244, 248, 0.8);
  border: 1px solid rgba(8, 145, 178, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(8, 145, 178, 0.1);
  border-color: rgba(8, 145, 178, 0.2);
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.08);
}

.nav-item-icon {
  width: 28px;
  height: 28px;
  stroke: var(--hydraulic-teal);
  stroke-width: 2px;
  fill: none;
}

.nav-item-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-slate);
}

.nav-item-desc {
  font-size: 12px;
  color: var(--cool-steel);
  margin-top: 2px;
}

.nav-arrow {
  width: 20px;
  height: 20px;
  margin-left: auto;
  stroke: rgba(8, 145, 178, 0.3);
  stroke-width: 1.5;
  fill: none;
}

.modal-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(8, 145, 178, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.modal-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--hydraulic-teal);
}

.modal-cta {
  padding: 12px 24px;
  background: var(--hydraulic-teal);
  color: white;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.2);
}

.modal-cta:hover {
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.25);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease-out;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s ease-out;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-sharp {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}

.reveal-sharp.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  header {
    padding: 0 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-menu {
    display: block;
  }

  .page-hero {
    padding: 120px 20px 40px;
  }

  .modal-panel {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100vh;
    transform: none;
    top: 0;
    left: 0;
    overflow-y: auto;
  }

  .modal-nav {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 24px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    flex-direction: column;
    text-align: center;
  }

  .process-step {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 24px;
  }

  .timeline-line {
    left: 20px;
  }

  .process-step .timeline-dot {
    left: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  section {
    padding: 80px 0 60px;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -10px);
  }
  50% {
    transform: translate(-5px, 15px);
  }
  75% {
    transform: translate(-15px, -5px);
  }
}

@keyframes gridMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -30px);
  }
}

strong, b, p {
  color: inherit;
}