/* === Header === */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  background-color: var(--primary-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(--secondary-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);
  }

  .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: 120px 0;
}

.wrapper,
.hero-content {
  width: calc((100% - 70px) / 2);
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  margin-bottom: 32px;
}

.hero .descr {
  margin-bottom: 48px;
  max-width: 500px;
}

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

.wrapper {
  position: relative;
}

.wrapper-img {
  width: 100%;
  border-radius: var(--border-radius-secondary);
  object-fit: cover;
}

.wrapper.right::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-secondary);
  z-index: -1;
}

.wrapper.left::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-secondary);
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
}

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

  .wrapper,
  .hero-content {
    width: 100%;
  }
}

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

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

.about-us-content {
  width: calc((100% - 70px) / 2);
}

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

.about-us-content .descr {
  margin-bottom: 36px;
}

.about-us-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 45px;
}

.about-us-item {
  width: calc((100% - 45px) / 2);
}

.about-us-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-secondary);
  margin-bottom: 20px;
  max-width: 44px;
  width: 100%;
  height: 44px;
}

.about-us-item-wrap img {
  width: 25px;
  object-fit: contain;
}

.about-us-item .subtitle {
  margin-bottom: 12px;
}

.about-us-item .descr {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .about-us-item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about-us .container-flex {
    flex-direction: column-reverse;
  }

  .about-us-content {
    width: 100%;
  }
}

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

.our-services {
  padding: 100px 0;
  background-color: var(--secondary-background);
}

.our-services-content {
  margin-bottom: 60px;
}

.our-services-content .title {
  margin-bottom: 12px;
}

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

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

.our-services-item {
  width: calc((100% - 120px) / 4);
}

.our-services-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-primary);
  background-color: var(--secondary-color);
  margin-bottom: 33px;
}

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

.our-services-item .subtitle {
  margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
  .our-services-item {
    width: calc((100% - 80px) / 3);
  }
}

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

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

/* === Why Choose === */

.why-choose {
  padding: 100px 0;
}

.why-choose-content {
  width: calc((100% - 70px) / 2);
}

.why-choose-content .title {
  margin-bottom: 20px;
}

.why-choose-content .descr {
  margin-bottom: 44px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-choose-item {
  display: flex;
  gap: 26px;
}

.why-choose-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-secondary);
}

.why-choose-item-wrap img {
  width: 22px;
  object-fit: contain;
}

.why-choose-item-content {
  width: calc(100% - 70px);
}

.why-choose-item-content .subtitle {
  margin-bottom: 12px;
}

.why-choose-item-content .descr {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .why-choose-content {
    width: 100%;
  }
}

/* === Plans === */

.plans {
  padding: 100px 0;
}

.plans-content {
  margin-bottom: 68px;
}

.plans-content .title {
  max-width: 600px;
  margin-bottom: 16px;
}

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

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

.plans-item {
  width: calc((100% - 70px) / 3);
  padding: 30px;
  border-radius: var(--border-radius-primary);
  border: 1px solid var(--accordion-active);
  height: auto;
}

.plans-item .subtitle {
  color: var(--secondary-color);
  margin-bottom: 32px;
}

.plans-item-price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.plans-item .descr {
  margin-bottom: 32px;
}

.primary-btn {
  margin-bottom: 32px;
}

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

.plans-item-list li {
  position: relative;
  padding-left: 32px;
}

.plans-item-list li::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 4px;
  background-color: var(--secondary-color);
  z-index: 1;
}

.plans-item-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-image: url("../images/check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

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

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

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

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

.how-work-content {
  width: calc((100% - 70px) / 2);
}

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

.how-work-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.how-work-item {
  width: calc((100% - 35px) / 2);
}

.how-work-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-secondary);
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 44px;
  width: 100%;
  height: 44px;
  font-size: 22px;
}

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

@media screen and (max-width: 768px) {
  .how-work .container-flex {
    flex-direction: column-reverse;
  }

  .how-work-content {
    width: 100%;
  }
}

/* === Testimonial === */

.testimonial {
  padding: 100px 0;
}

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

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

.testimonial-item {
  display: flex;
  flex-wrap: wrap;
  width: calc((100% - 40px) / 3);
  padding: 35px;
  height: auto;
  background-color: var(--secondary-background);
  border-radius: var(--border-radius-primary);
}

.testimonial-item-quote {
  fill: var(--primary-color);
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
  margin-bottom: 37px;
}

.testimonial-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius-primary);
  margin-left: auto;
  margin-top: auto;
}

.testimonial-item .descr {
  margin-bottom: 60px;
}

.testimonial-item-wrap {
  width: calc(100% - 90px);
  margin-top: auto;
}

.testimonial-item-wrap .subtitle {
  margin-bottom: 8px;
}

.testimonial-item-wrap p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--text-inverted);
}

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

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

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

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

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

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

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

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

.our-blog-item {
  width: calc((100% - 90px) / 4);
  transition: all 0.3s ease;
  border-radius: var(--border-radius-secondary);
  overflow: hidden;
  position: relative;
}

.our-blog-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(360deg, #232626 0%, rgba(35, 38, 38, 0) 100%);
  z-index: 1;
}

.our-blog-item-active {
  width: calc((100% - 30px) / 2);
}

.our-blog-item-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.our-blog-item-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 2;
}

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

.our-blog-item .our-blog-item-info,
.our-blog-item .descr {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.our-blog-item-active .our-blog-item-info,
.our-blog-item-active .descr {
  max-height: 500px;
}

.our-blog-item-active .our-blog-item-info {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  opacity: 0.8;
}

.our-blog-item-active .descr {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

@media screen and (max-width: 768px) {
  .our-blog-item-active,
  .our-blog-item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 500px) {
  .our-blog-item-active,
  .our-blog-item {
    width: 100%;
  }
}

/* === Contact === */

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

.contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  gap: 70px;
}

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

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

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

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

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

.contact-list-item svg {
  width: 25px;
  height: 25px;
  fill: var(--primary-color);
}

.contact-list-item .descr {
  margin: 0;
}

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

.contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--background-color);
  box-shadow: 0 10px 52px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  gap: 30px;
  width: 100%;
  border-radius: var(--border-radius-primary);
}

.contact-form .primary-btn {
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: calc((100% - 30px) / 2);
}

.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;
  }

  .form-group {
    width: 100%;
  }

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

/* === Footer === */

.footer {
  padding: 70px 0 20px;
  background: var(--primary-color);
  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;
  max-width: 400px;
}

.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{
  --body-gradient: linear-gradient(180deg, #F8F9FB 0%, #EEF3FA 50%, #FFFFFF 100%);
}

html, body{
  min-height: 100%;
  background: var(--body-gradient);
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600&display=swap");

:root{
  --font-heading: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --primary-color:#4A90E2;
  --primary-hover:#3579c8;
  --secondary-color:#FF6B6B;
  --secondary-hover:#e55555;

  --background-color:#F8F9FB;
  --secondary-background:#FFFFFF;
  --surface-elev:#F1F4F9;

  --text-primary:#2C2C2C;
  --text-secondary:#FFFFFF;
  --text-muted:#6C7786;

  --accordion-active:#E1E7F0;
  --border-color:#DCE3ED;

  --border-radius-primary:16px;
  --border-radius-secondary:18px;
}

html,body{
  background:var(--background-color);
  color:var(--text-primary);
}

body{
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  letter-spacing:.01em;
}

h1,h2,h3,h4,.title,.subtitle{
  font-family:var(--font-heading);
  color:var(--text-primary);
}

a{
  color:var(--primary-color);
  text-decoration:none;
  transition:color .25s ease,opacity .25s ease,background-color .25s ease,border-color .25s ease;
}

a:hover, a:focus{
  color:var(--primary-hover);
  outline:none;
}

.primary-btn, .secondary-btn{
  font-family:var(--font-heading);
  font-weight:700;
  padding:12px 20px;
  border-radius:12px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform .2s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor:pointer;
}

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

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

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

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

/* === Header === */

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  padding:16px 28px;
  background:linear-gradient(180deg, rgba(74,144,226,.98) 0%, rgba(74,144,226,.92) 100%);
  backdrop-filter:saturate(140%) blur(6px);
  overflow-x:hidden;
  transition:all .6s ease;
}

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

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

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

.header-nav-list a{
  color:var(--text-secondary);
  opacity:.95;
  font-weight:600;
}

.header-nav-list a:hover{
  color:#FDFDFE;
  text-decoration:underline;
}

.burger-btn{ display:none; }

.mobile-menu{ display:none; }

a.header-link-active{ color:#FDFDFE; }

@media screen and (max-width:1240px){
  .header{ padding:12px 22px; }
  .header .secondary-btn, .header-nav{ display:none; }
  .burger-btn{
    display:block;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:3px;
  }
  .burger-btn svg{ width:44px; height:44px; color:#FDFDFE; }
  .burger-btn:active svg{ color:#E9F1FF; }

  .mobile-menu{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;
    background:linear-gradient(180deg,#4A90E2 0%, #2f4b7c 100%);
    padding:18px 28px 60px;
    z-index:1000;
    transition:all .3s ease;
  }
  .mobile-menu-active{ right:0; }

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

  .close-btn{
    display:block;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:3px;
    margin-left:auto;
  }
  .close-btn svg{ width:34px; height:34px; stroke:#FDFDFE; }
  .close-btn:active svg{ stroke:#E9F1FF; }

  .mobile-nav-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    max-width:180px;
    width:100%;
  }
  .mobile-nav-list a{
    color:#FDFDFE;
    font-weight:600;
  }
}

/* === Hero === */

.hero{ padding:120px 0; }

.wrapper, .hero-content{ width:calc((100% - 70px)/2); }

.hero-title{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:64px;
  line-height:120%;
  margin-bottom:32px;
  letter-spacing:-.01em;
}

.hero .descr{
  margin-bottom:48px;
  max-width:560px;
  color:var(--text-muted);
  font-size:18px;
}

.hero-list{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.wrapper{ position:relative; }

.wrapper-img{
  width:100%;
  border-radius:var(--border-radius-secondary);
  object-fit:cover;
  box-shadow:0 20px 60px rgba(21, 36, 61, .18);
}

.wrapper.right::after{
  content:"";
  position:absolute;
  top:18px; left:18px; right:-18px; bottom:-18px;
  background:var(--surface-elev);
  border-radius:var(--border-radius-secondary);
  z-index:-1;
}

.wrapper.left::after{
  content:"";
  position:absolute;
  top:18px; left:-18px; right:18px; bottom:-18px;
  background:var(--surface-elev);
  border-radius:var(--border-radius-secondary);
  z-index:-1;
}

@media screen and (max-width:1024px){
  .hero-title{ font-size:54px; }
}

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

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

.about-us{ padding:100px 0; background:var(--secondary-background); }

.about-us-content{ width:calc((100% - 70px)/2); }

.about-us-content .title{ margin-bottom:20px; }
.about-us-content .descr{ margin-bottom:36px; color:var(--text-muted); }

.about-us-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:28px 45px;
}

.about-us-item{ width:calc((100% - 45px)/2); }

.about-us-item-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  background-color:#FFE3E3;
  border-radius:var(--border-radius-secondary);
  margin-bottom:16px;
  max-width:52px;
  width:100%;
  height:52px;
}

.about-us-item-wrap img{ width:26px; object-fit:contain; }

.about-us-item .subtitle{ margin-bottom:10px; }
.about-us-item .descr{ margin:0; color:var(--text-muted); }

@media screen and (max-width:1024px){ .about-us-item{ width:100%; } }

@media screen and (max-width:768px){
  .about-us .container-flex{ flex-direction:column-reverse; }
  .about-us-content{ width:100%; }
}

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

.our-services{
  padding:100px 0;
  background:linear-gradient(180deg,#F8F9FB 0%, #EEF3FA 100%);
}

.our-services-content{ margin-bottom:56px; }
.our-services-content .title{ margin-bottom:10px; }
.our-services-content .descr{ max-width:820px; color:var(--text-muted); }

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

.our-services-item{ width:calc((100% - 108px)/4); background:#FFFFFF; border:1px solid var(--border-color); border-radius:18px; padding:24px; }

.our-services-item-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  width:58px; height:58px;
  border-radius:14px;
  background-color:#E6F0FE;
  margin-bottom:20px;
}

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

.our-services-item .subtitle{ margin-bottom:10px; }
.our-services-item .descr{ color:var(--text-muted); }

@media screen and (max-width:1024px){ .our-services-item{ width:calc((100% - 72px)/3); } }
@media screen and (max-width:768px){ .our-services-item{ width:calc((100% - 36px)/2); } }
@media screen and (max-width:500px){ .our-services-item{ width:100%; } }

/* === Why Choose === */

.why-choose{ padding:100px 0; background:var(--secondary-background); }

.why-choose-content{ width:calc((100% - 70px)/2); }
.why-choose-content .title{ margin-bottom:18px; }
.why-choose-content .descr{ margin-bottom:40px; color:var(--text-muted); }

.why-choose-list{ display:flex; flex-direction:column; gap:24px; }

.why-choose-item{ display:flex; gap:22px; background:#FFFFFF; border:1px solid var(--border-color); border-radius:16px; padding:16px; }

.why-choose-item-wrap{
  display:flex; justify-content:center; align-items:center;
  width:46px; height:46px; background-color:#FFE3E3; border-radius:12px;
}

.why-choose-item-wrap img{ width:22px; object-fit:contain; }

.why-choose-item-content{ width:calc(100% - 70px); }
.why-choose-item-content .subtitle{ margin-bottom:8px; }
.why-choose-item-content .descr{ margin:0; color:var(--text-muted); }

@media screen and (max-width:768px){ .why-choose-content{ width:100%; } }

/* === Plans === */

.plans{ padding:100px 0; background:linear-gradient(180deg,#EEF3FA 0%, #FFFFFF 100%); }

.plans-content{ margin-bottom:60px; }
.plans-content .title{ max-width:640px; margin-bottom:14px; }
.plans-content .descr{ max-width:640px; color:var(--text-muted); }

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

.plans-item{
  width:calc((100% - 60px)/3);
  padding:28px;
  border-radius:20px;
  border:1px solid var(--border-color);
  background:#FFFFFF;
  box-shadow:0 12px 40px rgba(25, 53, 93, .06);
}

.plans-item .subtitle{ color:var(--secondary-color); margin-bottom:26px; }

.plans-item-price{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:32px;
  color:var(--primary-color);
  margin-bottom:12px;
}

.plans-item .descr{ margin-bottom:26px; color:var(--text-muted); }

.primary-btn{ margin-bottom:26px; }

.plans-item-list{ display:flex; flex-direction:column; gap:14px; }

.plans-item-list li{ position:relative; padding-left:32px; color:var(--text-primary); }

.plans-item-list li::after{
  content:"";
  position:absolute; width:16px; height:16px; top:50%; left:0; transform:translateY(-50%);
  border-radius:4px; background-color:#E6F0FE; z-index:1;
}

.plans-item-list li::before{
  content:"";
  position:absolute; width:8px; height:8px; top:50%; left:4px; transform:translateY(-50%);
  background-image:url("../images/check.png");
  background-size:contain; background-repeat:no-repeat; background-position:center; z-index:2;
}

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

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

.how-work{ padding:100px 0 160px; background:var(--secondary-background); }

.how-work-content{ width:calc((100% - 70px)/2); }
.how-work-content .title{ margin-bottom:30px; }

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

.how-work-item{ width:calc((100% - 30px)/2); background:#FFFFFF; border:1px solid var(--border-color); border-radius:18px; padding:20px; }

.how-work-item-wrap{
  display:flex; justify-content:center; align-items:center;
  background-color:#E6F0FE;
  border-radius:14px;
  color:#1d3b6b;
  margin-bottom:16px;
  max-width:48px; width:100%; height:48px; font-size:20px; font-weight:700;
}

.how-work-item .subtitle{ margin-bottom:8px; }
.how-work-item .descr{ color:var(--text-muted); }

@media screen and (max-width:768px){
  .how-work .container-flex{ flex-direction:column-reverse; }
  .how-work-content{ width:100%; }
}

/* === Testimonial === */

.testimonial{ padding:100px 0; background:linear-gradient(180deg,#FFFFFF 0%, #F6F9FF 100%); }

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

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

.testimonial-item{
  display:flex; flex-wrap:wrap;
  width:calc((100% - 40px)/3);
  padding:28px;
  background:#FFFFFF;
  border:1px solid var(--border-color);
  border-radius:20px;
  box-shadow:0 10px 36px rgba(25, 53, 93, .06);
}

.testimonial-item-quote{
  fill:var(--primary-color);
  width:38px; height:38px;
  transform:rotate(180deg);
  margin-bottom:28px;
}

.testimonial-item-img{
  width:60px; height:60px; object-fit:cover;
  border-radius:14px; margin-left:auto; margin-top:auto;
}

.testimonial-item .descr{ margin-bottom:42px; color:var(--text-primary); }

.testimonial-item-wrap{ width:calc(100% - 90px); margin-top:auto; }
.testimonial-item-wrap .subtitle{ margin-bottom:6px; }
.testimonial-item-wrap p{ font-weight:400; font-size:14px; line-height:150%; color:var(--text-muted); }

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

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

.our-blog{ padding:100px 0; background:var(--secondary-background); }

.our-blog-content{ margin-bottom:46px; }
.our-blog-content .title{ margin-bottom:12px; }
.our-blog-content .descr{ max-width:740px; color:var(--text-muted); }

.our-blog-list{
  display:flex; flex-wrap:wrap; justify-content:center; gap:26px;
}

.our-blog-item{
  width:calc((100% - 78px)/4);
  transition:transform .25s ease, box-shadow .25s ease;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  background:#0b1220;
}

.our-blog-item::before{
  content:"";
  position:absolute; top:0; left:0; right:0; bottom:0;
  background:linear-gradient(360deg, rgba(6,12,22,.85) 0%, rgba(6,12,22,0) 100%);
  z-index:1;
}

.our-blog-item-active{ width:calc((100% - 26px)/2); }

.our-blog-item-img{ width:100%; height:440px; object-fit:cover; }

.our-blog-item-content{
  position:absolute; bottom:14px; left:14px; right:14px; z-index:2;
}

.our-blog-item-content .subtitle{ color:#FDFDFE; margin-bottom:12px; }

.our-blog-item .our-blog-item-info,
.our-blog-item .descr{ max-height:0; overflow:hidden; transition:max-height .3s ease; }

.our-blog-item-active .our-blog-item-info,
.our-blog-item-active .descr{ max-height:520px; }

.our-blog-item-active .our-blog-item-info{
  font-size:14px; color:#FDFDFE; margin-bottom:8px; opacity:.85;
}

.our-blog-item-active .descr{ margin-bottom:16px; color:#FDFDFE; opacity:.95; }

.our-blog-item:hover{ transform:translateY(-2px); box-shadow:0 24px 50px rgba(17, 23, 41, .25); }

@media screen and (max-width:768px){
  .our-blog-item-active, .our-blog-item{ width:calc((100% - 26px)/2); }
}

@media screen and (max-width:500px){
  .our-blog-item-active, .our-blog-item{ width:100%; }
}

/* === Contact === */

.contact{
  padding:100px 0 160px;
  position:relative;
  background:linear-gradient(180deg,#EEF3FA 0%, #FFFFFF 100%);
}

.contact .container{
  display:flex; flex-wrap:wrap; justify-content:start; align-items:start; gap:60px;
}

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

.contact-content .title{ margin-bottom:10px; text-align:start; max-width:720px; }
.contact-content .descr{ margin-bottom:18px; max-width:680px; color:var(--text-muted); }

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

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

.contact-list-item svg{ width:24px; height:24px; fill:var(--primary-color); }
.contact-list-item .descr{ margin:0; }
.contact-list-item:nth-child(2) svg{ fill:transparent; stroke:var(--primary-color); }

.contact-form{
  display:flex; flex-wrap:wrap; justify-content:center;
  background:#FFFFFF;
  border:1px solid var(--border-color);
  box-shadow:0 16px 60px rgba(25, 53, 93, .08);
  padding:34px 28px;
  gap:26px; width:100%;
  border-radius:20px;
}

.contact-form .primary-btn{ margin-bottom:0; }

.form-group{ display:flex; flex-direction:column; width:calc((100% - 26px)/2); }

.form-group label{
  font-family:var(--font-body); font-weight:600; font-size:13px; line-height:171%;
  color:#7d8896; margin-bottom:8px; letter-spacing:.02em;
}

.form-group textarea,
.form-group input{
  font-family:var(--font-body);
  font-weight:600;
  font-size:16px;
  line-height:150%;
  color:var(--text-primary);
  border:1px solid var(--border-color);
  background:#FFFFFF;
  outline:none;
  border-radius:14px;
  padding:14px 14px;
  transition:border-color .25s ease, box-shadow .25s ease;
}

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

.form-group textarea:focus,
.form-group input:focus{
  border-color:var(--primary-color);
  box-shadow:0 0 0 4px rgba(74,144,226,.18);
}

.contact-map{
  height:auto; border-radius:20px; border:1px solid var(--border-color);
  min-height:400px; width:100%; background:#FFFFFF;
}

@media screen and (max-width:768px){
  .contact-form{ padding:24px; }
  .form-group{ width:100%; }
  .contact-content, .contact-form{ width:100%; }
}

/* === Footer === */

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

.footer a{ color:#E7EEFA; opacity:.9; }
.footer a:hover{ text-decoration:underline; opacity:1; }

.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:14px; }

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

.footer-rights{ width:100%; margin-top:28px; text-align:center; color:#C9D6EA; }

@media screen and (max-width:1240px){
  .footer{ padding:60px 0 20px; }
  .footer .container{ padding:0 16px; justify-content:space-between; gap:36px; }
}

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

.cookie-popup{
  position:fixed; bottom:0; left:0; right:0;
  background:#FFFFFF;
  border-top:1px solid var(--border-color);
  box-shadow:0 -8px 28px rgba(25, 53, 93, .08);
  padding:20px;
  z-index:1000;
  display:none;
}

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

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

.cookie-popup h2{ margin:0 0 6px; font-size:1.3rem; color:var(--text-primary); }
.cookie-popup p{ margin:0 0 14px; font-size:1rem; color:var(--text-muted); }
:root{
  --body-gradient: linear-gradient(
    180deg,
    #E6F0FF 0%,
    #C9DFFF 35%,
    #A6C8FF 70%,
    #7EA8FF 100%
  );
}

html, body{
  min-height: 100%;
  background: var(--body-gradient);
  background-attachment: fixed;
}
