/**
 * Critical CSS https://makfast.com/tools/critical-css-generator/
 * INDEXES
 * 0. Root
 * 1. Profile
 * 2. Attention
 * 3. Solution
 * 4. Metods
 * 5. Steps
 * 6. Prices
 * 7. Guarantees
 * 9. Reviews
 * 10. FAQ
 * 11. CTA
 * 12. PageSpeed
 */

/*
 * 1. Profile
 */
.landing .profile .name {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.landing .profile .order {
    color: var(--a-color);
    font-size: 1.4em;
    font-weight: 300;
    background: #2f2f2f;
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    margin: 40px 10px 20px;
    display: inline-block;
}
.landing .profile .order:hover {
    opacity: 1;
}
.landing .profile .photo img {
    border-radius: 0;
}
.landing .similar_post {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    bottom: 60px;
    width: 90%;
    margin: 0 0 0 -45%;
    left: 50%;
    font-size: 14px;
}
.landing .similar_post a {
    color: var(--color);
    max-width: 300px;
    position: relative;
}
.landing .similar_post a:hover {
    text-decoration: none;
}
.landing .similar_post a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
.landing .similar_post a:hover::after {
    width: 0;
}


@media (max-width: 800px) {
  .landing .profile .photo img {
    max-width: 160px;
  }
  .landing .profile .name {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .landing .profile .links {
    margin: 40px 0 0;
  }
  .landing .similar_post {
    bottom: 30px;
  }
  .landing .similar_post a span {
    display: none;
  }
  .landing .similar_post a {
    font-size: 32px;
  }
  .landing .similar_post a::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .landing .profile .name {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) and (max-height: 800px) {
  .landing .profile .name {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .landing .profile .photo img {
    max-width: 160px;
  }
  .landing .profile .links {
    margin: 40px 0 0;
  }
}
@media (max-width: 460px) and (max-height: 640px) {
  .landing .profile .name {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .landing .profile .links {
    margin: 20px 0 0;
  }
}
@media (max-width: 380px) and (max-height: 640px) {
  .landing .profile .photo img {
    max-width: 120px;
  }
}
@media (max-width: 320px) and (max-height: 640px) {
  .landing .profile .order {
    font-size: 1.2em;
    padding: 10px 10px;
    margin: 20px 10px 0;
  }
  .landing .scroll-icon {
    display: none !important;  
  }
}

/*
 * 2. Attention
 */
.landing .attention {

}
.landing .attention ul {
    list-style: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}
.landing .attention ul li {
    margin: 20px 0;
    text-align: left;
}
.landing .attention i {
    font-size: 1em;
    margin: 0 20px 0 0;
}
.landing .attention .desc {
    font-size: 2em;
    color: #b9b9b9;
    font-weight: 300;
}
@media (max-width: 640px) {
  .reveal-text.visible {
    opacity: 1;
    white-space: wrap !important;
  }
  .landing .attention .desc {
    font-size: 1.7em;
  }
}

/*
 * 3. Solution
 */
.landing .solution {
}
.landing .solution {
    background: var(--bg-stars);
    max-width: 100%;
}
.landing .solution .wrap {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}
.landing .solution ul {
    list-style: none;
/*    max-width: 960px;*/
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    justify-content: center;
}
.landing .solution ul li {
    margin: 20px 0;
    text-align: center;
    display: block;
    width: 22%;
    background: #232222;
    padding: 20px;
    border-radius: 20px;
}
.landing .solution i {
    font-size: 7em;
    margin: 0 0 20px 0;
    text-align: center;
    opacity: .6;
    transition: opacity 0.6s ease-out;
    padding: 0;
    color: #bdbdbd;
}
.landing .solution ul li:hover i {
    opacity: 1;
}
.landing .solution ul .title {
    font-size: 2em;
    color: #FFF;
    font-weight: 300;
    text-transform: none;
    font-size: 1.8em;
    line-height: 1.2;
    margin: 0 0 10px;
}
.landing .solution ul .desc {
    color: #b9b9b9;
    font-weight: 300;
    font-size: 1.5em;
    line-height: 1.2;
}
.landing .solution .solution-desc {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
}
.landing .solution .chevron {
    transform: none;
    transition: transform 1s ease-out
}
.landing .solution ul li:hover .chevron {
  transform: translateY(3px);
}
.landing .solution .chevron::after {
    top: -1px;
    border-top-color: #232222;
}
.landing .solution .chevron::before {
    border-top-color: #7f7b7b;
}
@media (max-width: 1000px) {
  .landing .solution ul li {
    width: 30%;
  }
}
@media (max-width: 1000px) {
  .landing .solution ul li {
    width: 47%;
  }
}
@media (max-width: 640px) {
  .landing .solution .desc {
    font-size: 1.7em;
  }
}
@media (max-width: 480px) {
  .landing .solution ul li {
    width: 97%;
  }
}

/*
 * 4. Metods
 */
.landing .metods {
}
.landing .metods .metods-desc {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
}
.landing .metods .items {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 2%;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
}
.landing .metods .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    padding: 30px 0;
    border-top: 1px solid #323232;
}
.landing .metods .item:last-child {
    border-bottom: 1px solid #323232;
}
.landing .metods .item .col {
    padding: 0 20px;
}
.landing .metods .item:nth-child(odd) {
    background: #212121;
}
.landing .metods .item:hover {
    background: #272727;
}
.landing .metods .item .title {
    width: 30%;
    color: #d3d3d3;
    text-transform: none;
    text-align: left;
    font-weight: 300;
}
.landing .metods .item img {
}
.landing .metods .item .desc {
    width: 50%;
    text-align: left;
    font-size: 1.3em;
    font-weight: 300;
    color: #999999;
}
.landing .metods .item .percent {
    width: 20%;
    font-size: 1.4em;
    font-weight: 400;
    color: #4eb804;
}
.landing .metods .item .disclaim {
    color: #999999;
}
@media (max-width: 640px) {
  .landing .metods .item .col {
    padding: 0 10px;
  }
  .landing .metods .item .title {
    font-size: 16px;
  }
  .landing .metods .item .desc {
    font-size: 14px;
  }
  .landing .metods .item .percent {
    font-size: 14px;
  }
}

/*
 * 5. Steps
 */
.landing .steps {
}
.landing .steps {
    background: var(--bg-stars);
    max-width: 100%;
    padding: 5em 10px 10em;
}
.landing .steps .wrap {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}
.landing .steps .steps-desc {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
}
.landing .steps .ui.circular.steps:not(.vertical) {
    margin: 15em 0 1em;
}
.landing .steps .ui.steps .step .description {
    color: #878686;
}
.landing .steps .ui.steps .step .title {
    margin-top: -1.5em;
    color: #fff;
    height: 20px;
}
.landing .steps .ui.circular.steps:not(.vertical) .step {
    background: rgb(243 247 251 / 21%);
}
.landing .steps .ui.circular.ordered.steps .step::before {
    background: #0e0e0e;
}
.landing .steps .ui.circular.steps:not(.vertical) .step .content:not(.aligned) .title+.description {
    margin-top: 3em;
}
@media (max-width: 1000px) {
  .landing .steps .ui.circular.steps:not(.vertical) {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 20px;
  }
  .landing .steps .ui.circular.steps:not(.vertical) .step {
    margin: 80px 50px;
  }
}
@media (max-width: 640px) {
  .landing .steps .ui.circular.steps:not(.vertical) .step {
    margin: 80px 30px;
  }
}
@media (max-width: 480px) {
  .landing .steps .ui.circular.steps:not(.vertical) .step {
    margin: 50px 30px 70px;
  }
  .landing .steps .ui.steps .step .title {
    margin-top: -1em;
    text-align: left;
  }
  .landing .steps .ui.circular.steps:not(.vertical) .step .content:not(.aligned) .title+.description {
    text-align: left;
  }
}

/*
 * 6. Prices
 */
.landing .price {
}
.landing .price .price-desc {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
}
.landing .price .items {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 2%;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
}
.landing .price .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    padding: 30px 0;
    border-top: 1px solid #323232;
}
.landing .price .item:last-child {
    border-bottom: 1px solid #323232;
}
.landing .price .item .col {
    padding: 0 20px;
}
.landing .price .item:nth-child(odd) {
    background: #212121;
}
.landing .price .item:hover {
    background: #272727;
}
.landing .price .item .title {
    width: 50%;
    color: #d3d3d3;
    text-transform: none;
    text-align: left;
    font-weight: 300;
}
.landing .price .item img {
}
.landing .price .item .price {
    width: 50%;
    font-size: 1.6em;
    font-weight: 300;
    color: #FFF;
}
.landing .price .item .disclaim {
    color: #999999;
}
.landing .price .order {
    color: var(--a-color);
    font-size: 1.4em;
    font-weight: 300;
    background: #2f2f2f;
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    margin: 40px 10px 20px;
    display: inline-block;
}
.landing .price .order:hover {
    opacity: 1;
}

@media (max-width: 640px) {
  .landing .price .item .col {
    padding: 0 10px;
  }
  .landing .price .item .title {
    font-size: 16px;
  }
  .landing .price .item .desc {
    font-size: 14px;
  }
  .landing .price .item .percent {
    font-size: 14px;
  }
}

/*
 * 7. Guarantees
 */
.landing .steps {
}
.landing .guarantees {
    background: var(--bg-stars);
    max-width: 100%;
}
.landing .guarantees .wrap {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}
.landing .guarantees .guarantees-desc {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
}
.landing .guarantees ul {
    list-style: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}
.landing .guarantees ul li {
    margin: 20px 0;
    text-align: left;
}
.landing .guarantees i {
    font-size: 1em;
    margin: 0 20px 0 0;
}
.landing .guarantees .desc {
    font-size: 2em;
    color: #b9b9b9;
    font-weight: 300;
}
@media (max-width: 640px) {
  .landing .guarantees .desc {
    font-size: 1.7em;
  }
}

/*
 * 9. Reviews
 */
.landing .reviews .more {
    color: var(--a-color);
    font-size: 1.4em;
    font-weight: 300;
    background: #2f2f2f;
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    margin: 40px 10px 20px;
    display: inline-block;
}
.landing .reviews .more:hover {
    opacity: 1;
}
.landing .reviews .rate {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 180px;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-content: center;
    font-weight: 500;
    font-size: 14px;
    align-items: center;
    color: #929292;
}
.landing .reviews .rate img {
    height: 16px;
    width: auto;
    display: inline;
    opacity: .7;
}
.landing .reviews .stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.landing .reviews .stars .star {
    width: 19px;
    height: 19px;
    background: url(/wp-content/themes/colorbold/blog2025-2/images/reviews/star.svg) center no-repeat;
    opacity: .7;
}
.landing .reviews .stars .star:hover {
    opacity: 1;
}

/*
 * 10. FAQ
 */
.landing .faq {
}
.landing .faq .ui.inverted.accordion {
    width: 100%;
}
.landing .faq .ui.accordion>.title {
    font-size: 1.4em;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}
.landing .faq .ui.accordion:not(.styled) .title~.content {
    font-size: 1.4em;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    color: #838383;
}

/*
 * 11. CTA
 */
.landing .cta {
    background: var(--bg-stars);
    max-width: 100%;
}
.landing .cta .wrap {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}

.landing .cta .cta-desc {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
}
.landing .cta .order {
    color: var(--a-color);
    font-size: 1.4em;
    font-weight: 300;
    background: #2f2f2f;
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    margin: 40px 10px 20px;
    display: inline-block;
}
.landing .cta .order:hover {
    opacity: 1;
}
.landing .cta .links {
    margin: 20px 0 40px;
}
.landing .cta .links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.landing .cta .links ul li {
    display: inline;
    margin: 0 10px;
}
.landing .cta .links ul li a {
    color: var(--a-color);
    font-size: 3em;
}
.landing .cta .links ul li a:hover {
    color: var(--a-color-hover);
}
@media (max-width: 960px) {
  .landing .reviews .rate {
    position: relative;
    bottom: unset;
    right: unset;
    margin: 20px auto 0;
    text-align: center;
  }
}

/*
 * 12. PageSpeed
 */
.block-20.pagespeed .info {
    font-size: 2em;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: #b9b9b9;
    padding: 0 10px;
}
.block-20.pagespeed .goreport {
    color: var(--a-color);
    font-size: 1.4em;
    font-weight: 300;
    background: #2f2f2f;
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    margin: 40px 10px 20px;
    display: inline-block;
}
.block-20.pagespeed .goreport:hover {
    opacity: 1;
}
.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 40px;
    padding: 50px;
}
.metric-item {
    text-align: center;
    min-width: 180px;
}
.progress-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}
.progress-ring {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.progress-ring__circle-bg {
    stroke: #e9e9e9;
    stroke-width: 12;
    fill: none;
}
.progress-ring__circle {
    stroke: #2196f3;
    stroke-width: 12;
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}
.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 300;
    color: #00cc66;
}
.percentage small {
    font-size: 24px;
    font-weight: 400;
    color: #00cc66;
}
.metric-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--a-color);;
    margin-bottom: 8px;
}
.metric-subtitle {
    font-size: 16px;
    color: #a3a3a3;
    letter-spacing: 0.5px;
}
/* Цвета для разных метрик */
.metric-item:nth-child(1) .progress-ring__circle { stroke: #00cc66; } /* Производительность */
.metric-item:nth-child(2) .progress-ring__circle { stroke: #00cc66; } /* Спец. возможности */
.metric-item:nth-child(3) .progress-ring__circle { stroke: #00cc66; } /* Рекомендации */
.metric-item:nth-child(4) .progress-ring__circle { stroke: #00cc66; } /* SEO */

@media (max-width: 960px) {
  .metrics-grid {
    gap: 5px;
    padding: 50px 10px;
  }
}

 /* Адаптивные размеры */
@media (max-width: 960px) {
  .block-20.pagespeed .info {
    font-size: 1.5em;
  }
    .progress-wrapper {
	width: 150px;
	height: 150px;
    }
    
    .percentage {
	font-size: 40px;
    }
    
    .percentage small {
	font-size: 20px;
    }
    
    .metric-title {
	font-size: 18px;
    }
    
    .metric-subtitle {
	font-size: 14px;
    }
}

@media (max-width: 768px) {
  .block-20.pagespeed .info {
    font-size: 1.2em;
  }
    .metrics-grid {
	gap: 40px;
	padding: 40px 30px;
    }
    
    .progress-wrapper {
	width: 130px;
	height: 130px;
    }
    
    .percentage {
	font-size: 34px;
    }
    
    .percentage small {
	font-size: 18px;
    }
}

@media (max-width: 576px) {
    .metrics-grid {
	gap: 30px;
	padding: 30px 20px;
    }
    
    .progress-wrapper {
	width: 90px;
	height: 90px;
    }
    
    .percentage {
	font-size: 30px;
    }
    
    .percentage small {
	font-size: 16px;
    }
    
    .metric-title {
	font-size: 16px;
    }
    
    .metric-subtitle {
	font-size: 12px;
    }
}
