@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Teko:wght@300;400;500;600;700&display=swap');

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

:root {
  --racing-red: #e63946;
  --metallic-silver: #c0c0c0;
  --charcoal-dark: #1a1a1a;
  --charcoal-medium: #2d2d2d;
  --charcoal-light: #404040;
  --electric-orange: #ff6b35;
  --chrome-white: #f8f9fa;
  --steel-gray: #6c757d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Teko', sans-serif;
  background-color: var(--charcoal-dark);
  color: var(--chrome-white);
  line-height: 1.6;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Russo One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  color: var(--chrome-white);
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--chrome-white);
  border: 2px solid var(--racing-red);
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-secondary:hover {
  background: var(--racing-red);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.logo-text {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: var(--chrome-white);
  text-transform: uppercase;
}

.logo-text span {
  color: var(--racing-red);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--racing-red);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--racing-red);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background: var(--chrome-white);
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-bg-effects::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-bg-effects::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
  animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid var(--racing-red);
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--racing-red);
  margin-bottom: 25px;
  clip-path: polygon(5% 0, 100% 0, 100% 70%, 95% 100%, 0 100%, 0 30%);
}

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--chrome-white) 0%, var(--metallic-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title span {
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--steel-gray);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.3;
}

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

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

.section-medium {
  background: var(--charcoal-medium);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid var(--racing-red);
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--racing-red);
  margin-bottom: 20px;
  clip-path: polygon(5% 0, 100% 0, 100% 70%, 95% 100%, 0 100%, 0 30%);
}

.section-title {
  font-size: 48px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 22px;
  color: var(--steel-gray);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.card {
  background: var(--charcoal-medium);
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  transition: height 0.4s ease;
}

.card:hover::before {
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.card-title {
  font-size: 26px;
  margin-bottom: 15px;
}

.card-text {
  color: var(--steel-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.card-price {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  color: var(--racing-red);
  margin-bottom: 20px;
}

.card-price span {
  font-size: 18px;
  color: var(--steel-gray);
}

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

.feature-item {
  text-align: center;
  padding: 40px 30px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.feature-item:hover {
  background: var(--charcoal-medium);
  border-color: var(--racing-red);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 2px solid var(--racing-red);
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.feature-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-text {
  color: var(--steel-gray);
}

.review-card {
  background: var(--charcoal-medium);
  padding: 35px;
  position: relative;
}

.review-stars {
  color: var(--electric-orange);
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.review-text {
  font-style: italic;
  color: var(--chrome-white);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.review-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  color: var(--chrome-white);
}

.review-name {
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
}

.review-role {
  color: var(--steel-gray);
  font-size: 16px;
}

.team-card {
  background: var(--charcoal-medium);
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--steel-gray);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 24px;
  margin-bottom: 8px;
}

.team-role {
  color: var(--racing-red);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--steel-gray);
  font-size: 16px;
}

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

.form-label {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--chrome-white);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  background: var(--charcoal-dark);
  border: 2px solid var(--charcoal-light);
  color: var(--chrome-white);
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--racing-red);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

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

.form-select {
  cursor: pointer;
}

.contact-info-card {
  background: var(--charcoal-medium);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card:hover {
  border-color: var(--racing-red);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.contact-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-value {
  color: var(--steel-gray);
  font-size: 18px;
}

.contact-value a:hover {
  color: var(--racing-red);
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--charcoal-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
  background: var(--charcoal-dark);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-about .logo {
  margin-bottom: 25px;
}

.footer-description {
  color: var(--steel-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--chrome-white);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--steel-gray);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--racing-red);
  padding-left: 10px;
}

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

.footer-copyright {
  color: var(--steel-gray);
  font-size: 16px;
}

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

.footer-legal a {
  color: var(--steel-gray);
  font-size: 16px;
}

.footer-legal a:hover {
  color: var(--racing-red);
}

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 420px;
  background: var(--charcoal-medium);
  padding: 30px;
  z-index: 9999;
  border: 1px solid rgba(230, 57, 70, 0.3);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--chrome-white);
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  color: var(--chrome-white);
}

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

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--charcoal-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--steel-gray);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.faq-item {
  background: var(--charcoal-medium);
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: var(--chrome-white);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--racing-red);
}

.faq-icon {
  width: 35px;
  height: 35px;
  background: rgba(230, 57, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--racing-red);
  transition: all 0.3s ease;
}

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

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

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--steel-gray);
  line-height: 1.8;
}

.area-card {
  background: var(--charcoal-medium);
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-card:hover {
  border-color: var(--racing-red);
  transform: translateY(-5px);
}

.area-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.area-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.area-distance {
  color: var(--steel-gray);
  font-size: 16px;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 40px;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
  animation: bounce 2s ease-in-out infinite;
}

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

.thank-you-title {
  font-size: 56px;
  margin-bottom: 25px;
}

.thank-you-text {
  font-size: 24px;
  color: var(--steel-gray);
  max-width: 600px;
  margin: 0 auto 40px;
}

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

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--charcoal-medium);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.stat-item:hover {
  border-color: var(--racing-red);
}

.stat-number {
  font-family: 'Russo One', sans-serif;
  font-size: 56px;
  color: var(--racing-red);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 20px;
  color: var(--steel-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.image-with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-with-text.reverse {
  direction: rtl;
}

.image-with-text.reverse > * {
  direction: ltr;
}

.text-block-title {
  font-size: 42px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.text-block-text {
  color: var(--steel-gray);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.image-block {
  position: relative;
  overflow: hidden;
}

.image-block-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--steel-gray);
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--racing-red) 0%, var(--electric-orange) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: var(--charcoal-dark);
  border: 3px solid var(--racing-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 25px;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
  transition: all 0.3s ease;
}

.process-step:hover .process-icon {
  background: var(--racing-red);
  color: var(--chrome-white);
}

.process-number {
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  color: var(--racing-red);
  margin-bottom: 15px;
}

.process-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.process-description {
  color: var(--steel-gray);
  font-size: 18px;
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .image-with-text {
    grid-template-columns: 1fr;
  }
  
  .image-with-text.reverse {
    direction: ltr;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .cookie-banner {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}