:root {
--color-primary: #7C3AED;
--color-primary-hover: #6D28D9;
--color-secondary: #22D3EE;
--color-bg: #0B0F19;
--color-surface: #1E293B;
--color-text: #F1F5F9;
--color-text-muted: #94A3B8;
--color-success: #10B981;
--color-error: #EF4444;
--font-main: 'Outfit', sans-serif;
--container-width: 1200px;
--padding-section: 4rem;
--border-radius: 1rem;
--border-radius-xl: 1.5rem;
--shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
--shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
--transition: all 0.3s ease;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font-main);
background-color: var(--color-bg);
color: var(--color-text);
line-height: 1.6;
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
ul {
list-style: none;
}
img {
max-width: 100%;
display: block;
}
button,
input,
textarea {
font-family: inherit;
border: none;
outline: none;
}
button {
cursor: pointer;
}
.container {
width: 90%;
max-width: var(--container-width);
margin: 0 auto;
}
.section {
padding: var(--padding-section) 0;
}
.section__header {
text-align: center;
margin-bottom: 3rem;
}
.section__title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
background: linear-gradient(135deg, #fff, var(--color-secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.section__desc {
color: var(--color-text-muted);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 1.5rem;
border-radius: 99px;
font-weight: 600;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn--primary {
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
color: white;
box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}
.btn--outline {
background: transparent;
border: 2px solid var(--color-secondary);
color: var(--color-secondary);
}
.btn--outline:hover {
background: var(--color-secondary);
color: var(--color-bg);
transform: translateY(-2px);
}
.btn--sm {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}
.btn--lg {
padding: 1rem 2rem;
font-size: 1.1rem;
}
.btn--block {
width: 100%;
}
.btn--loader .loader {
display: none;
width: 20px;
height: 20px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: spin 1s ease-in-out infinite;
margin-left: 10px;
}
.btn.loading .btn__text {
display: none;
}
.btn.loading .loader {
display: block;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: transparent;
backdrop-filter: blur(0px);
padding: 1.5rem 0;
border-bottom: 1px solid transparent;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--scrolled {
background: rgba(11, 15, 25, 0.9);
backdrop-filter: blur(12px);
padding: 0.8rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}
.header__container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 1.25rem;
transition: var(--transition);
}
.logo:hover {
opacity: 0.9;
transform: scale(1.02);
}
.nav__list {
display: flex;
gap: 2rem;
}
.nav__link {
font-size: 1rem;
color: var(--color-text-muted);
position: relative;
padding: 0.5rem 0;
}
.nav__link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--color-secondary);
transition: var(--transition);
}
.nav__link:hover {
color: var(--color-text);
}
.nav__link:hover::after,
.nav__link.active::after {
width: 100%;
}
.nav__link.active {
color: var(--color-secondary);
}
.header__actions {
display: flex;
align-items: center;
gap: 1rem;
}
.burger,
.nav__close {
display: none;
}
@media (max-width: 1024px) {
.nav {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: var(--color-bg);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: var(--transition);
z-index: 1001;
}
.nav.active {
right: 0;
}
.nav__list {
flex-direction: column;
align-items: center;
gap: 2.5rem;
}
.nav__link {
font-size: 1.5rem;
}
.burger {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
padding: 5px;
}
.burger span {
width: 25px;
height: 2px;
background-color: white;
transition: var(--transition);
}
.burger[aria-expanded="true"] span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.burger[aria-expanded="true"] span:nth-child(2) {
opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.nav__close {
display: block;
position: absolute;
top: 2rem;
right: 2rem;
font-size: 2rem;
background: none;
color: white;
}
}
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
background: radial-gradient(circle at top right, #1e1b4b, var(--color-bg));
overflow: hidden;
padding-top: 100px;
padding-bottom: 50px;
}
.hero__bg {
position: absolute;
top: -20%;
right: -10%;
width: 60%;
height: 60%;
background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
filter: blur(120px);
opacity: 0.2;
animation: floatBg 15s infinite alternate;
}
@keyframes floatBg {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-10%, 10%);
}
}
.hero__container {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: center;
z-index: 2;
}
.hero__content {
text-align: left;
}
.hero__badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.2rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 99px;
font-size: 0.85rem;
margin-bottom: 1.5rem;
color: var(--color-secondary);
}
.hero__title {
font-size: clamp(2.5rem, 5vw, 4rem);
line-height: 1.1;
margin-bottom: 1.5rem;
font-weight: 800;
}
.hero__subtitle {
font-size: 1.2rem;
color: var(--color-text-muted);
margin-bottom: 2.5rem;
max-width: 550px;
line-height: 1.7;
}
.hero__actions {
display: flex;
gap: 1.5rem;
margin-bottom: 3rem;
}
.hero__stats {
display: flex;
gap: 3rem;
border-top: 1px solid rgba(255, 255, 255, 0.05);
padding-top: 2rem;
}
.stat-item {
display: flex;
flex-direction: column;
}
.stat-item__num {
font-size: 1.75rem;
font-weight: 700;
color: white;
}
.stat-item__text {
font-size: 0.85rem;
color: var(--color-text-muted);
text-transform: uppercase;
letter-spacing: 1px;
}
.hero__visual {
position: relative;
}
.hero__image-wrapper {
position: relative;
max-width: 500px;
margin-left: auto;
}
.hero__img {
width: 100%;
border-radius: 2rem;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
position: relative;
z-index: 2;
}
.hero__glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 120%;
height: 120%;
background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
filter: blur(60px);
opacity: 0.3;
z-index: 1;
}
.floating-card {
position: absolute;
background: rgba(30, 41, 59, 0.8);
backdrop-filter: blur(10px);
padding: 0.75rem 1.25rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
gap: 0.75rem;
z-index: 3;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
animation: float 4s ease-in-out infinite;
}
.floating-card--top {
top: 10%;
left: -15%;
}
.floating-card--bottom {
bottom: 15%;
right: -10%;
animation-delay: 2s;
}
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
@media (max-width: 1024px) {
.hero__container {
grid-template-columns: 1fr;
text-align: center;
gap: 3rem;
}
.hero__content {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.hero__subtitle {
margin-left: auto;
margin-right: auto;
}
.hero__stats {
justify-content: center;
}
.hero__visual {
max-width: 450px;
margin: 0 auto;
}
.floating-card--top {
left: 0;
}
.floating-card--bottom {
right: 0;
}
}
@media (max-width: 600px) {
.hero__actions {
flex-direction: column;
width: 100%;
}
.hero__stats {
gap: 1.5rem;
flex-wrap: wrap;
}
.stat-item__num {
font-size: 1.5rem;
}
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-card {
background: var(--color-surface);
padding: 2rem;
border-radius: var(--border-radius);
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--color-primary);
}
.feature-card__icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card__title {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
.feature-card__text {
color: var(--color-text-muted);
font-size: 0.95rem;
}
.services-masonry {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 280px;
gap: 1.5rem;
}
.service-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.4));
backdrop-filter: blur(10px);
border-radius: var(--border-radius-xl);
padding: 2.5rem;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: flex-end;
transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 60%);
opacity: 0;
transition: opacity 0.5s ease;
}
.service-card:hover {
transform: translateY(-8px);
border-color: rgba(34, 211, 238, 0.3);
box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}
.service-card:hover::before {
opacity: 1;
}
.service-card__deco {
position: absolute;
top: 1.5rem;
right: 1.5rem;
width: 60px;
height: 60px;
opacity: 0.2;
transition: transform 0.6s ease, opacity 0.6s ease;
z-index: 1;
}
.service-card:hover .service-card__deco {
transform: scale(1.2) rotate(15deg);
opacity: 0.5;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 0.75rem;
position: relative;
z-index: 2;
font-weight: 700;
}
.service-card p {
color: var(--color-text-muted);
font-size: 0.95rem;
line-height: 1.6;
position: relative;
z-index: 2;
}
.service-card--lg {
grid-column: span 1;
grid-row: span 2;
background: linear-gradient(150deg, #2e1065 0%, #0B0F19 100%);
justify-content: flex-end;
}
.service-card--lg h3 {
font-size: 2rem;
}
.service-card--wide {
grid-column: span 2;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 2rem;
text-align: left;
}
.service-card--wide .service-card__content {
max-width: 60%;
}
.link-arrow {
margin-top: 1.5rem;
color: var(--color-secondary);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
z-index: 2;
position: relative;
font-size: 0.9rem;
}
.link-arrow span {
transition: transform 0.3s;
}
.link-arrow:hover span {
transform: translateX(5px);
}
@media (max-width: 900px) {
.services-masonry {
grid-template-columns: 1fr;
grid-template-rows: auto;
}
.service-card--lg,
.service-card--wide {
grid-column: span 1;
grid-row: span 1;
min-height: 250px;
}
}
.reviews-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.review-card {
background: var(--color-surface);
padding: 2rem;
border-radius: var(--border-radius);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.review-card__header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.review-card__avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--color-primary);
}
.review-card__name {
font-weight: 600;
}
.review-card__role {
font-size: 0.85rem;
color: var(--color-text-muted);
}
.review-card__text {
font-style: italic;
color: var(--color-text-muted);
}
.contacts__container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: flex-start;
}
.contacts__info {
padding-top: 2.5rem;
}
.contacts__desc {
margin-bottom: 2rem;
font-size: 1.1rem;
color: var(--color-text-muted);
}
.contacts__list li {
margin-bottom: 2rem;
font-size: 1.1rem;
display: flex;
align-items: center;
gap: 1.5rem;
}
.contact-icon {
flex-shrink: 0;
width: 28px;
height: 28px;
}
.form {
background: var(--color-surface);
padding: 2.5rem;
border-radius: var(--border-radius-xl);
box-shadow: var(--shadow-soft);
}
.form__group {
margin-bottom: 1.5rem;
}
.form__label {
display: block;
margin-bottom: 0.5rem;
font-size: 0.9rem;
font-weight: 600;
}
.form__input {
width: 100%;
padding: 1rem;
background: var(--color-bg);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 0.5rem;
color: white;
transition: var(--transition);
}
.form__input:focus {
border-color: var(--color-primary);
box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}
.form__input--sm {
width: 30%;
display: inline-block;
}
.form__hint {
display: block;
font-size: 0.8rem;
color: var(--color-text-muted);
margin-top: 0.3rem;
}
.form__error {
color: var(--color-error);
font-size: 0.85rem;
margin-top: 0.3rem;
display: block;
}
.form__group--checkbox {
display: flex;
align-items: center;
gap: 0.5rem;
}
.link-btn {
background: none;
border: none;
color: var(--color-secondary);
text-decoration: underline;
cursor: pointer;
padding: 0;
font-size: inherit;
}
@media (max-width: 768px) {
.contacts__container {
grid-template-columns: 1fr;
}
}
.footer {
background: #05080f;
padding-top: 4rem;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
padding-bottom: 3rem;
}
.footer__title {
margin-bottom: 1.5rem;
color: white;
}
.footer__col ul li {
margin-bottom: 0.8rem;
}
.footer__contacts li {
font-size: 0.9rem;
color: var(--color-text-muted);
line-height: 1.5;
}
.footer__col ul li a,
.footer__col ul li button {
color: var(--color-text-muted);
background: none;
transition: var(--transition);
font-size: 0.95rem;
}
.footer__col ul li a:hover,
.footer__col ul li button:hover {
color: var(--color-primary);
}
.footer__bottom {
border-top: 1px solid rgba(255, 255, 255, 0.05);
padding: 1.5rem 0;
text-align: center;
color: var(--color-text-muted);
font-size: 0.9rem;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.modal[aria-hidden="false"] {
opacity: 1;
pointer-events: auto;
}
.modal__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(5px);
}
.modal__container {
background: var(--color-surface);
padding: 2rem;
border-radius: var(--border-radius);
width: 90%;
max-width: 600px;
position: relative;
z-index: 2;
transform: translateY(20px);
transition: transform 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal[aria-hidden="false"] .modal__container {
transform: translateY(0);
}
.modal__close {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 2rem;
background: none;
color: var(--color-text-muted);
}
.modal__title {
margin-bottom: 1.5rem;
font-size: 1.5rem;
}
.modal__content {
max-height: 60vh;
overflow-y: auto;
color: var(--color-text-muted);
}
.modal__content--center {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.success-icon {
font-size: 4rem;
}
.cookie-popup {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%) translateY(150%);
background: var(--color-surface);
padding: 1rem 1.5rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-soft);
display: flex;
align-items: center;
gap: 2rem;
z-index: 1500;
border: 1px solid var(--color-primary);
transition: all 0.5s ease;
width: 90%;
max-width: 500px;
opacity: 0;
pointer-events: none;
}
.cookie-popup.active {
transform: translateX(-50%) translateY(0);
opacity: 1;
pointer-events: all;
}
.cookie-popup__content {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
flex-wrap: wrap;
gap: 1rem;
}
.cookie-popup p {
font-size: 0.9rem;
margin-bottom: 0;
}
.cookie-popup__actions {
display: flex;
gap: 0.5rem;
}
@media (max-width: 768px) {
.hero__title {
font-size: 2.5rem;
}
.section__title {
font-size: 2rem;
}
}