/* Base Styles */
html,
body {
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 5%);
  overflow-x: hidden;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Pattern */
.hero-pattern {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%), url('/img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Navigation */
.burger-line {
  transition: all 0.3s ease-in-out;
}

.burger-open .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-open .line2 {
  opacity: 0;
}

.burger-open .line3 {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.mobile-menu.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.mobile-menu.visible {
  transform: translateY(0);
  opacity: 1;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(0, 0%, 100%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: hsl(0, 0%, 100%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link,
#burger-button {
  font-family: 'Inter', sans-serif;
}

.navbar-sticky {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-sticky.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-title {
  font-size: 4.5rem;
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.hero-title strong {
  font-weight: 300;
  position: relative;
  display: inline-block;
}

.hero-title strong::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6.5rem;
  }
}

/* CTA Button */
.cta-button {
  transition: all 0.3s ease;
  border: none;
  background: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 5%);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 1rem 2.5rem;
}

.cta-button:hover {
  background-color: hsl(0, 0%, 95%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Section Header */
.section-header {
  position: relative;
  display: inline-block;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, hsl(0, 0%, 100%), transparent);
}

/* Section Spacing */
.section-spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Section Title Spacing */
#projekte .section-header,
#leistungen .section-header {
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  #projekte .section-header,
  #leistungen .section-header {
    margin-bottom: 8rem;
  }
}

/* Project Cards */
.project-card {
  background: linear-gradient(135deg, hsl(0, 0%, 7%) 0%, hsl(0, 0%, 5%) 100%);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.project-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.6s ease;
}

.project-card:hover::after {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.project-image-wrapper {
  position: relative;
  padding: 4rem 4rem 0 4rem;
  background: transparent;
}

.project-image-container {
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.project-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.project-card:hover .project-image-container::before {
  opacity: 1;
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.2);
}

.project-card:hover .project-image {
  transform: scale(1.08);
  filter: grayscale(0);
}

.project-info {
  padding: 3.5rem 4rem 4rem;
}

.project-title {
  font-size: 2rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.project-description {
  font-size: 1rem;
  font-weight: 300;
  color: hsl(0, 0%, 65%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.project-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.project-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(0, 0%, 100%);
  transition: width 0.4s ease;
}

.project-link:hover::after {
  width: 100%;
}

.project-link span {
  transition: transform 0.3s ease;
}

.project-link:hover span {
  transform: translateX(8px);
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, hsl(0, 0%, 7%) 0%, hsl(0, 0%, 5%) 100%);
  padding: 5rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, transparent 100%);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, hsl(0, 0%, 8%) 0%, hsl(0, 0%, 6%) 100%);
  transform: translateX(8px);
}

.service-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 400;
  color: hsl(0, 0%, 40%);
  margin-bottom: 2.5rem;
  letter-spacing: 0.2em;
}

.service-title {
  font-size: 2.25rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.service-description {
  font-size: 1.0625rem;
  font-weight: 300;
  color: hsl(0, 0%, 55%);
  line-height: 1.9;
}

/* Value Cards */
.value-card {
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 0 3rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

.value-card::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, transparent 100%);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover::before {
  height: 100%;
}

.value-card:hover {
  padding-left: 3.5rem;
}

.value-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 4rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  line-height: 1;
}

.value-title {
  font-size: 1.75rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.value-description {
  font-size: 1rem;
  font-weight: 300;
  color: hsl(0, 0%, 55%);
  line-height: 1.8;
}

/* About Section */
.about-intro {
  font-size: 1.375rem;
  font-weight: 300;
  color: hsl(0, 0%, 75%);
  line-height: 1.9;
  max-width: 950px;
}

.about-section-title {
  font-size: 2rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  margin-bottom: 2.5rem;
  letter-spacing: -0.04em;
}

.about-text {
  font-size: 1.125rem;
  font-weight: 300;
  color: hsl(0, 0%, 65%);
  line-height: 2;
  margin-bottom: 2rem;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: hsl(0, 0%, 60%);
  line-height: 1.8;
  padding-left: 3rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  margin: 3.5rem 0;
  position: relative;
}

.quote-text::before {
  content: '"';
  position: absolute;
  left: -0.5rem;
  top: -1rem;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 6rem 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

/* Story Section */
.story-section {
  background: linear-gradient(135deg, hsl(0, 0%, 7%) 0%, hsl(0, 0%, 5%) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem;
  margin-top: 6rem;
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.story-avatar {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(0, 0%, 90%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 300;
  color: hsl(0, 0%, 5%);
  letter-spacing: -0.02em;
}

.story-meta h4 {
  font-size: 1.75rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.story-meta p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: hsl(0, 0%, 55%);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Contact Section */
.contact-form-wrapper {
  background: linear-gradient(135deg, hsl(0, 0%, 7%) 0%, hsl(0, 0%, 5%) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem;
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: hsl(0, 0%, 60%);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: hsl(0, 0%, 100%);
  padding-left: 0.5rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(0, 0%, 40%);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 2rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 5%);
  border: 1px solid hsl(0, 0%, 100%);
  padding: 1.5rem 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
  width: 300%;
  height: 300%;
}

.form-submit:hover {
  background: transparent;
  color: hsl(0, 0%, 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.contact-info-item {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, hsl(0, 0%, 7%) 0%, hsl(0, 0%, 5%) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-item:hover::before {
  opacity: 1;
}

.contact-info-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, hsl(0, 0%, 8%) 0%, hsl(0, 0%, 6%) 100%);
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: hsl(0, 0%, 60%);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 300;
  color: hsl(0, 0%, 90%);
}

/* Footer */
.footer-section {
  background: hsl(0, 0%, 3%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: hsl(0, 0%, 50%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.footer-column-title {
  font-size: 0.6875rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-link {
  font-size: 1rem;
  font-weight: 300;
  color: hsl(0, 0%, 60%);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: hsl(0, 0%, 100%);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 8px;
}

.footer-link:hover {
  color: hsl(0, 0%, 100%);
  padding-left: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
}

.footer-copyright {
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(0, 0%, 40%);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  gap: 3rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(0, 0%, 40%);
  transition: color 0.3s ease;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(0, 0%, 100%);
  transition: width 0.3s ease;
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-legal-link:hover {
  color: hsl(0, 0%, 100%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-title strong::after {
    height: 1px;
  }

  .section-header {
    font-size: 2.5rem !important;
  }

  .section-header::after {
    width: 40px;
  }

  #projekte .section-header,
  #leistungen .section-header {
    margin-bottom: 3rem;
  }

  .project-image-wrapper {
    padding: 2rem 2rem 0 2rem;
  }

  .project-info {
    padding: 2.5rem 2rem 2.5rem;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-description {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .service-card:last-child {
    border-bottom: none !important;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .value-card {
    padding: 0 0 0 2rem;
    margin-bottom: 3rem;
  }

  .value-card:hover {
    padding-left: 2.5rem;
  }

  .value-number {
    font-size: 3rem;
  }

  .value-title {
    font-size: 1.5rem;
  }

  .about-intro {
    font-size: 1.125rem;
  }

  .about-section-title {
    font-size: 1.5rem;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .story-section .grid {
    grid-template-columns: 1fr !important;
  }

  .quote-text {
    font-size: 1.125rem;
    padding-left: 2rem;
  }

  .quote-text::before {
    font-size: 3rem;
  }

  .section-divider {
    margin: 4rem 0;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .story-section {
    padding: 2rem;
    margin-top: 3rem;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }

  .story-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.875rem;
  }

  .story-meta h4 {
    font-size: 1.5rem;
  }

  .story-meta p {
    font-size: 0.875rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .contact-info-item {
    padding: 2rem 1.5rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
  }

  .contact-info-value {
    font-size: 0.9375rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.6875rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .form-submit {
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header {
    font-size: 2rem !important;
  }

  .project-image-wrapper {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  .project-info {
    padding: 2rem 1.5rem 2rem;
  }

  .service-card {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .service-card:last-child {
    border-bottom: none !important;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .value-card {
    padding: 0 0 0 1.5rem;
  }

  .value-card:hover {
    padding-left: 2rem;
  }

  .about-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .story-section {
    padding: 1.5rem;
  }

  .story-section .grid {
    grid-template-columns: 1fr !important;
  }

  .contact-info-item {
    padding: 1.5rem 1rem;
  }
}