/* === Header === */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  background-color: var(--secondary-color);
  overflow-x: hidden;
  transition: all 0.6s ease;
}

.header .secondary-btn {
  background-color: var(--secondary-color);
}

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

.header-nav {
  display: flex;
  gap: 430px;
  align-items: center;
}

.header-nav-list {
  display: flex;
  gap: 30px;
}

.header-nav-list a {
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.header-nav-list a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.burger-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

a.header-link-active {
  color: var(--primary-color);
}

@media screen and (max-width: 1240px) {
  .header {
    padding: 10px 25px;
  }

  .header .secondary-btn,
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: block;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px;
  }

  .burger-btn svg {
    width: 45px;
        height: 45px;
        color: var(--text-secondary);
        border: 1px solid #fff;
        border-radius: 5px;
  }

  .burger-btn:active svg {
    color: var(--primary-hover);
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 215px;
    height: 100vh;
    background-color: var(--text-inverted);
    backdrop-filter: blur(120px);
    padding: 15px 30px 60px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .mobile-menu-active {
    right: 0;
  }

  .mobile-menu .primary-btn {
    display: block;
  }

  .close-btn {
    display: block;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px;
    margin-left: auto;
  }

  .close-btn svg {
    width: 35px;
    height: 35px;
    stroke: var(--text-secondary);
  }

  .close-btn:active svg {
    stroke: var(--primary-hover);
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 150px;
  }

  .mobile-nav-list a {
    color: var(--text-secondary);
  }
}

/* === Hero == */

.hero {
  padding: 50px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 150px;
  background-color: var(--secondary-color);
  z-index: -1;
}

.hero-container {
  background-color: var(--secondary-background);
  max-width: 1170px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px 0 20px 28px;
  width: calc((100%) / 2);
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 62px;
  line-height: 120%;
  color: #333;
  margin-bottom: 20px;
}

.hero-content .descr {
  max-width: 440px;
  margin-bottom: 40px;
}

.wrapper {
  height: 650px;
  max-width: 600px;
  width: calc((100%) / 2);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

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

@media screen and (max-width: 1024px) {
  .hero-content,
  .wrapper {
    width: 100%;
  }

  .wrapper {
    height: 550px;
  }

  .hero-content {
    margin-bottom: 45px;
    padding-right: 50px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-container {
    justify-content: end;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 50px 20px;
  }

  .hero-content {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* === Our Services === */

.our-services {
  padding: 100px 0;
}

.our-services-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.our-services-content .title {
  max-width: 700px;
  margin-bottom: 10px;
}

.our-services-content .descr {
  max-width: 580px;
}

.our-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
}

.our-services-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px;
  background-color: var(--secondary-color);
  width: calc((100% - 20px) / 2);
}

.our-services-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
}

.our-services-item-wrap img {
  width: 45px;
  object-fit: contain;
}

.our-services-item-content {
  width: calc(100% - 110px);
}

.our-services-item .subtitle {
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.our-services-item .descr {
  color: var(--text-secondary);
}

@media screen and (max-width: 768px) {
  .our-services-item {
    width: 100%;
  }
}

/* === About Us === */

.about-us {
  padding: 100px 0;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: calc(100% / 2);
}

.about-us-content .title {
  margin-bottom: 8px;
}

.about-us-content .descr:not(:last-child) {
  margin-bottom: 6px;
}

.about-us-content .primary-btn {
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .about-us .container-flex {
    justify-content: end;
  }

  .about-us-content {
    margin-bottom: 60px;
    width: 100%;
  }
}

/* === How Work === */

.how-work {
  padding: 100px 0;
}

.how-work-content {
  margin-bottom: 60px;
}

.how-work-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.how-work-item {
  display: flex;
  align-items: center;
  position: relative;
}

.how-work-item::after {
  content: "";
  position: absolute;
  top: calc(50% + 30px);
  bottom: -25px;
  right: 30px;
  width: 1px;
  background-color: var(--text-primary);
}

.how-work-item::before {
  content: "";
  position: absolute;
  bottom: calc(50% + 30px);
  top: -25px;
  right: 30px;
  width: 1px;
  background-color: var(--text-primary);
}

.how-work-item-content {
  max-width: 700px;
  padding: 20px 10px;
  position: relative;
}

.how-work-item-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  border-right: 1px solid var(--text-primary);
  border-top: 1px solid var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
}

.how-work-item-content .subtitle {
  margin-bottom: 10px;
}

.how-work-item-wrap-center {
  flex: 1;
  min-width: 20px;
  height: 1px;
  background-color: var(--text-primary);
}

.how-work-item-wrap-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 36px;
  border: 1px solid var(--text-primary);
}

.how-work-item:nth-child(1) .how-work-item-wrap-right {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

/* === Plans === */

.plans {
  padding: 100px 0 180px;
}

.plans-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.plans-content .title {
  margin-bottom: 8px;
}

.plans-content .descr {
  max-width: 900px;
}

.plans-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plans-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px 50px;
  width: calc((100% - 60px) / 3);
  overflow: hidden;
  height: auto;
  box-shadow: 0 10px 52px 0 rgba(0, 0, 0, 0.08);
  background-color: var(--background-color);
}

.plans-item::after {
  content: "";
  position: absolute;
  top: -250px;
  left: -80px;
  right: -80px;
  height: 510px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.plans-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.plans-item-content .subtitle {
  color: var(--text-secondary);
  font-size: 30px;
  margin-bottom: 7px;
}

.plans-item-content .descr {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.plans-item-price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: var(--text-secondary);
}

.plans-item-price span {
  font-weight: 500;
  font-size: 13px;
  opacity: 0.8;
}

.plans-item-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.plans-list-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.plans-list-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #eee;
}

.plans-list-item-icon {
  width: 14px;
  height: 12px;
  fill: transparent;
  stroke: var(--secondary-color);
}

.plans-item .primary-btn {
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .plans-item {
    width: calc((100% - 30px) / 2);
  }

  .plans-item-content .subtitle {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .plans-item {
    width: 100%;
  }
}

/* === Testimonial === */

.testimonial {
  padding: 100px 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-content .title {
  margin-bottom: 8px;
}

.testimonial-content .descr {
  max-width: 800px;
}

.swiper-wrapper {
  padding-bottom: 50px;
}

.testimonial-item {
  display: flex;
  border: 1px solid #eee;
  padding: 20px;
  gap: 30px;
  height: auto;
}

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

.testimonial-item-content,
.testimonial-item img {
  width: calc((100% - 30px) / 2);
}

.testimonial-item-content {
  display: flex;
  flex-direction: column;
}

.testimonial-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.testimonial-item-wrap svg {
  width: 30px;
  height: 30px;
  fill: var(--text-secondary);
}

.testimonial-item-content .subtitle {
  margin-top: auto;
}

.testimonial-item-content .descr:nth-child(2) {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 30px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 4px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 25px;
}

@media screen and (max-width: 500px) {
  .testimonial-item {
    flex-direction: column;
  }

  .testimonial-item-content,
  .testimonial-item img {
    width: 100%;
  }
}

/* === Our Blog === */

.our-blog {
  padding: 100px 0;
}

.our-blog-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.our-blog-content .title {
  margin-bottom: 10px;
}

.our-blog-content .descr {
  max-width: 800px;
}

.our-blog-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: auto;
}

.our-blog-item-img {
  object-fit: cover;
  width: 100%;
  height: 300px;
  margin-bottom: 11px;
}

.our-blog-item-info {
  margin-bottom: 11px;
}

.our-blog-item .subtitle {
  margin-bottom: 10px;
}

.our-blog-item .descr {
  margin-bottom: 20px;
}

/* === Contact === */

.contact {
  padding: 100px 0 180px;
  position: relative;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 70px;
  column-gap: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
  width: calc(100% / 2);
  padding: 40px 30px;
}

.contact-content .title {
  margin-bottom: 12px;
  text-align: start;
}

.contact-content .descr {
  margin-bottom: 30px;
  max-width: 670px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.contact-list-item {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--text-secondary);
  position: relative;
}

.contact-content .subtitle {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.contact-content svg {
  width: 25px;
  height: 25px;
  fill: transparent;
  stroke: var(--primary-color);
}

.contact-content-wrap:not(:last-child) {
  margin-bottom: 30px;
}

.contact-content a {
  color: var(--text-secondary);
}

.contact-content-wrap .descr {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  gap: 13px;
  margin: 0;
}

.contact-list-item:nth-child(2) svg {
  fill: transparent;
  stroke: var(--primary-color);
}

.contact-form {
  background-color: var(--background-color);
  box-shadow: 0 10px 52px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  width: calc(100% / 2);
  border-radius: var(--border-radius-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group:nth-child(4) {
  margin-bottom: 60px;
}

.form-group label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  color: #d3d3d3;
  margin-bottom: 10px;
}

.form-group textarea,
.form-group input {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  padding-bottom: 5px;
  color: var(--text-primary);
  border: none;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--text-primary);
  border-radius: var(--border-radius-primary);
  padding: 15px;
  transition: 0.3s all ease;
}

.form-group textarea:hover,
.form-group input:hover {
  border: 1px solid var(--primary-hover);
}

.form-group textarea:focus,
.form-group input:focus {
  border: 1px solid var(--primary-color);
}

.contact-map {
  height: auto;
  border-radius: var(--border-radius-primary);
  border: none;
  min-height: 400px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }

  .contact-content,
  .contact-form {
    width: 100%;
  }
}

/* === Footer === */

.footer {
  padding: 70px 0 20px;
  background: var(--text-inverted);
  color: var(--text-secondary);
  overflow: hidden;
}

.footer a {
  color: var(--text-secondary);
  opacity: 0.8;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact,
.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-rights {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 1240px) {
  .footer {
    padding: 60px 0 20px;
  }

  .footer .container {
    padding: 0 15px;
    justify-content: space-between;
    gap: 40px;
  }
}

/* === Cookie Popup === */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-popup a {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.cookie-popup a:hover {
  color: var(--primary-hover);
}

.cookie-popup h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.cookie-popup p {
  margin: 0 0 20px;
  font-size: 1rem;
}
:root {
  --primary-color: #4A90E2;
  --primary-hover: #357ABD;
  --secondary-color: #E94E77;
  --secondary-hover: #C03958;
  --background-color: #F9FAFB;
  --secondary-background: #FFFFFF;
  --text-primary: #2C3E50;
  --text-secondary: #4F5B66;
  --text-inverted: #FFFFFF;
  --border-radius-primary: 12px;
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Merriweather', serif;
}

/* === Global === */
body {
  font-family: var(--font-body);
  background-color: var(--background-color);
  color: var(--text-primary);
}

/* === Header === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  background-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.4s ease;
}

.header .logo img {
  border-radius: var(--border-radius-primary);
}

.header-nav-list a {
  font-family: var(--font-body);
  color: var(--text-inverted);
  padding: 6px 8px;
  border-radius: var(--border-radius-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-nav-list a:hover {
  background-color: var(--secondary-hover);
  color: var(--text-inverted);
}

.secondary-btn {
  font-family: var(--font-body);
  background-color: var(--primary-color);
  color: var(--text-inverted);
  padding: 10px 18px;
  border: none;
  border-radius: var(--border-radius-primary);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.secondary-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* === Hero === */
.hero {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--text-inverted);
  overflow: hidden;
}

.hero-content {
  max-width: 500px;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hero p.descr {
  font-size: 1.1rem;
  line-height: 1.6;
}

.primary-btn {
  display: inline-block;
  font-family: var(--font-body);
  background-color: var(--text-inverted);
  color: var(--secondary-color);
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* === Our Services === */
.our-services {
  padding: 120px 20px;
  background-color: var(--secondary-background);
}

.our-services-item {
  background-color: var(--background-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.our-services-item .subtitle {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

/* === About Us === */
.about-us {
  padding: 100px 20px;
  background-color: var(--background-color);
}

.about-us-content .title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* === How Work === */
.how-work {
  padding: 100px 20px;
  background-color: var(--secondary-background);
}

.how-work-item {
  padding: 30px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 40px;
  border-radius: var(--border-radius-primary);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease;
}

.how-work-item:hover {
  border-left-color: var(--secondary-color);
}

/* === Plans === */
.plans {
  padding: 100px 20px 180px;
  background-color: var(--background-color);
}

.plans-item {
  background-color: var(--secondary-background);
  border-radius: var(--border-radius-primary);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.plans-item:hover {
  transform: translateY(-10px);
}

.plans-item-content .subtitle {
  color: var(--secondary-color);
}

/* === Testimonial === */
.testimonial {
  padding: 100px 20px;
  background-color: var(--secondary-background);
}

.testimonial-item {
  border-radius: var(--border-radius-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 30px;
  transition: box-shadow 0.3s ease;
}

.testimonial-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

/* === Our Blog === */
.our-blog {
  padding: 100px 20px;
  background-color: var(--background-color);
}

.our-blog-item {
  border-radius: var(--border-radius-primary);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.our-blog-item:hover {
  transform: scale(1.02);
}

/* === Contact === */
.contact {
  padding: 100px 20px 180px;
  background-color: var(--secondary-background);
}

.contact-content {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-primary);
  padding: 50px;
  color: var(--text-inverted);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form {
  background-color: var(--secondary-background);
  border-radius: var(--border-radius-primary);
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* === Footer === */
.footer {
  padding: 80px 20px 40px;
  background-color: var(--text-primary);
  color: var(--text-inverted);
}

.footer a {
  color: var(--text-inverted);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 1;
}
/* === Насытить фоны секций === */

/* Our Services – увеличить интенсивность градиента */
.our-services {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.4) 0%,
    rgba(233, 78, 119, 0.4) 100%
  );
}

/* About Us – полупрозрачная цветная заливка поверх изображения */
.about-us {
  position: relative;
}
.about-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(233, 78, 119, 0.6);
  mix-blend-mode: multiply;
  z-index: 0;
}
.about-us-content,
.wrapper {
  position: relative;
  z-index: 1;
}

/* How Work – более насыщенный радиальный градиент */
.how-work {
  background: radial-gradient(
    circle at top left,
    rgba(74, 144, 226, 0.3),
    rgba(233, 78, 119, 0.3) 70%
  );
}

/* Plans – добавить тонкий градиент */
.plans-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(233, 78, 119, 0.1) 100%
  );
}

/* Testimonial – усилить узор фоном */
.testimonial {
  background:
    linear-gradient(
      180deg,
      rgba(74, 144, 226, 0.3),
      rgba(233, 78, 119, 0.3)
    );
}

/* Our Blog – усилить градиент и затемнить изображение */
.our-blog {
  background:
    linear-gradient(
      rgba(233, 78, 119, 0.35),
      rgba(74, 144, 226, 0.35)
    ),
}

/* Contact – глубокий горизонтальный градиент */
.contact {
  background: linear-gradient(
    90deg,
    rgba(233, 78, 119, 0.3) 0%,
    rgba(74, 144, 226, 0.3) 100%
  );
}
/* === Overrides & Adjustments === */

/* Убрать clip-path для .wrapper */
.wrapper {
  clip-path: none !important;
}

/* Задать белый фон для ключевых блоков */
.our-services,
.about-us,
.how-work,
.plans,
.testimonial,
.our-blog,
.contact {
  background-color: #FFFFFF !important;
}

/* Добавить скругление для всех картинок внутри контента */
.hero .wrapper-img,
.our-services-item-wrap img,
.about-us .wrapper-img,
.testimonial-item img,
.our-blog-item-img,
.contact-content svg,
.footer .logo img {
  border-radius: 12px;
}

/* При необходимости: для всех <img> */
img {
  border-radius: 8px;
}
