:root {
  /* Триадная цветовая схема */
  --primary-color: #ff6b6b;
  --primary-dark: #e74c4c;
  --primary-light: #ff8a8a;
  
  --secondary-color: #6b96ff;
  --secondary-dark: #4c78e7;
  --secondary-light: #8aacff;
  
  --tertiary-color: #ffce6b;
  --tertiary-dark: #e7b84c;
  --tertiary-light: #ffe18a;
  
  /* Нейтральные цвета */
  --dark: #222222;
  --medium-dark: #444444;
  --medium: #777777;
  --medium-light: #bbbbbb;
  --light: #f5f5f5;
  
  /* Размеры для брутализма */
  --brutal-border-width: 3px;
  --brutal-shadow-offset: 5px;
  
  /* Типографика */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Merriweather', serif;
  
  /* Промежутки */
  --section-padding: 80px 0;
  --inner-padding: 20px;
}

/* Общие стили */
body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
}

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

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--secondary-dark);
  transform: translateY(-2px);
}

.section-padding {
  padding: var(--section-padding);
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: var(--brutal-border-width);
  background-color: var(--primary-color);
}

.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium);
  margin-bottom: 40px;
}

/* Брутальный стиль */
.brutal-section {
  position: relative;
  padding: var(--section-padding);
  border-bottom: var(--brutal-border-width) solid var(--dark);
}

.brutal-card {
  background-color: white;
  border: var(--brutal-border-width) solid var(--dark);
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 var(--dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brutal-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--brutal-shadow-offset) + 2px) calc(var(--brutal-shadow-offset) + 2px) 0 var(--dark);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brutal-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Кнопки */
.btn, button, input[type='submit'] {
  font-family: var(--heading-font);
  font-weight: 600;
  border: var(--brutal-border-width) solid var(--dark);
  padding: 10px 25px;
  background-color: white;
  color: var(--dark);
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 var(--dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  display: inline-block;
}

.btn::before, button::before, input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--brutal-shadow-offset) + 2px) calc(var(--brutal-shadow-offset) + 2px) 0 var(--dark);
  color: white;
}

.btn:hover::before, button:hover::before, input[type='submit']:hover::before {
  left: 0;
}

.btn-primary, .btn-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.btn-tertiary, .btn-tertiary:hover {
  background-color: var(--tertiary-color);
  color: var(--dark);
}

.btn-outline-light {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--dark);
}

.btn-brutal {
  margin: 5px;
}

.btn-link {
  color: var(--secondary-color);
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-transform: none;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover {
  color: var(--secondary-dark);
  transform: none;
  box-shadow: none;
  text-decoration: underline;
}

.btn-link:hover::after {
  margin-left: 10px;
}

.btn-link::before {
  display: none;
}

.brutal-buttons {
  margin-top: 20px;
}

/* Header */
.brutal-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  border-bottom: var(--brutal-border-width) solid var(--dark);
  padding: 15px 0;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--primary-dark);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
}

.desktop-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.desktop-menu li {
  margin-left: 30px;
}

.desktop-menu a {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.desktop-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.desktop-menu a:hover {
  color: var(--primary-color);
}

.desktop-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  margin-bottom: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: var(--brutal-border-width) solid var(--dark);
  padding: 20px;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.brutal-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 75px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brutal-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 2px 2px 0 var(--dark);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 40px;
  font-weight: 300;
  font-family: var(--body-font);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Catalogue Section */
.catalogue {
  background-color: var(--light);
}

.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-filter {
  margin: 5px;
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid var(--medium-light);
  color: var(--medium);
  box-shadow: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-filter:hover, .btn-filter.active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: white;
  transform: translateY(-2px);
}

.catalogue-items {
  margin-top: 30px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 15px 0;
}

/* About Section */
.about-img {
  position: relative;
  overflow: hidden;
  border: var(--brutal-border-width) solid var(--dark);
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 var(--dark);
  margin-bottom: 30px;
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 20px;
}

/* Accolades Section */
.accolades {
  background-color: var(--light);
}

.accolade-item {
  padding: 30px;
  text-align: center;
  height: 100%;
}

.accolade-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: var(--brutal-border-width) solid var(--dark);
}

.accolade-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accolade-item h3 {
  margin-top: 20px;
  font-size: 1.3rem;
}

/* Success Stories Section */
.success-stories {
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.success-stories .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}

.success-carousel {
  position: relative;
  z-index: 1;
}

.success-item {
  padding: 30px;
}

.success-img {
  position: relative;
  overflow: hidden;
  border: var(--brutal-border-width) solid white;
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 rgba(255,255,255,0.3);
}

.success-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.success-content {
  padding: 30px;
}

.success-content h3 {
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.brutal-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.brutal-btn:hover {
  background-color: white;
  color: var(--dark);
}

.progress-indicator {
  margin: 0 20px;
  font-size: 1.2rem;
  color: white;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light);
}

.testimonial-item {
  padding: 30px;
  text-align: center;
  height: 100%;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: var(--brutal-border-width) solid var(--dark);
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
}

.testimonial-text::before {
  top: -20px;
  left: 0;
}

.testimonial-text::after {
  bottom: -50px;
  right: 0;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.testimonial-author p {
  color: var(--medium);
  margin-bottom: 0;
}

/* Media Links Section */
.media-links {
  background-color: white;
}

.media-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

.media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-item:hover .media-img img {
  transform: scale(1.05);
}

.media-content {
  padding: 20px;
  text-align: center;
  flex: 1;
  width: 100%;
}

/* Blog Section */
.blog {
  background-color: var(--light);
}

.blog-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  flex: 1;
  width: 100%;
  text-align: left;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--medium);
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content .btn-link {
  margin-top: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.blog-content .btn-link:hover {
  color: var(--secondary-dark);
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact-map {
  margin-top: 30px;
  border: var(--brutal-border-width) solid var(--dark);
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 var(--dark);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.contact-map:hover img {
  transform: scale(1.05);
}

.brutal-form {
  padding: 30px;
  border: var(--brutal-border-width) solid var(--dark);
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 var(--dark);
  background-color: white;
}

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

.form-control {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--light);
  border: 2px solid var(--medium-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Footer */
.brutal-footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.footer-about h3,
.footer-links h3,
.footer-social h3 {
  color: var(--tertiary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--tertiary-light);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.social-links a {
  color: white;
  margin-right: 20px;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.social-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-links a[href*="facebook"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="white"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"/></svg>');
}

.social-links a[href*="twitter"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="white"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>');
}

.social-links a[href*="instagram"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="white"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

.social-links a:hover {
  color: var(--tertiary-light);
  transform: translateY(-3px);
}

.newsletter {
  margin-top: 30px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--tertiary-color);
}

.newsletter-form button {
  background-color: var(--tertiary-color);
  color: var(--dark);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--tertiary-light);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--medium-light);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.success-title {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.success-message {
  max-width: 600px;
  margin-bottom: 30px;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 60px;
}

.page-title {
  margin-bottom: 40px;
}

.page-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-content p, .page-content ul {
  margin-bottom: 20px;
}

.page-content ul {
  padding-left: 20px;
}

/* Адаптивная типографика */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  h3 {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .category-filter {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  
  .success-item .row {
    flex-direction: column;
  }
  
  .success-img {
    margin-bottom: 20px;
  }
  
  .testimonial-item, .accolade-item, .media-item, .blog-item {
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 10px;
  }
}

/* Анимации в стиле "Морфинг" */
@keyframes morphBorder {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.testimonial-img, .accolade-icon {
  animation: morphBorder 8s ease-in-out infinite;
}

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

.accolade-item, .media-item {
  animation: floatAnimation 5s ease-in-out infinite;
}

/* Специальные стили для различных секций */
/* Параллакс эффект для фоновых изображений */
.success-stories {
  background-attachment: fixed;
}

/* Дополнительные улучшения для брутального стиля */
.brutal-section::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--dark);
  z-index: 1;
}

/* Эффект гласморфизма для специальных элементов */
.glassmorphism {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* CSS Grid для галерей */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border: var(--brutal-border-width) solid var(--dark);
  box-shadow: var(--brutal-shadow-offset) var(--brutal-shadow-offset) 0 var(--dark);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Дополнительные типографические улучшения */
.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.text-shadow {
  text-shadow: 2px 2px 0 var(--dark);
}

/* Эффект неона для выделенных элементов */
.neon-effect {
  text-shadow: 0 0 5px var(--primary-light), 0 0 10px var(--primary-light), 0 0 15px var(--primary-light);
}

/* Оптимизация для печати */
@media print {
  .brutal-header, .brutal-footer, .hero-buttons, .contact-form, .newsletter-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
  }
  
  a {
    text-decoration: underline;
    color: black;
  }
  
  .brutal-card, .brutal-section {
    border: 1px solid black;
    box-shadow: none;
  }
  
  .page-content {
    padding-top: 0;
  }
}