feat: added new pricing block

This commit is contained in:
Ignat Karelov
2026-05-13 14:14:26 +03:00
parent acd36fce34
commit a2127549ac
4 changed files with 144 additions and 4 deletions

View File

@@ -584,6 +584,61 @@ img {
}
}
.pricing {
background: linear-gradient(90deg, $color-surface, $color-surface-2);
.section__head {
margin-bottom: 44px;
}
&__list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
margin-bottom: 28px;
}
&__note {
margin-bottom: 30px;
color: $color-text-soft;
font-size: 18px;
line-height: 1.45;
text-align: center;
}
&__cta {
text-align: center;
}
&__cta-btn {
width: min(100%, 420px);
min-height: 60px;
padding: 16px 26px;
font-size: 18px;
line-height: 1.2;
}
&-item {
@include card;
min-height: 144px;
padding: 24px;
h3 {
margin-bottom: 10px;
font-size: 22px;
font-weight: 700;
line-height: 1.25;
}
p {
color: $color-accent;
font-size: 24px;
font-weight: 700;
line-height: 1.2;
}
}
}
.gallery {
background: linear-gradient(90deg, $color-surface, $color-surface-2);