:root {
    /* New Palette: Tech Blue & Vibrant Coral */
    --primary-color: #0F172A;
    /* Slate 900 */
    --accent-color: #F43F5E;
    /* Rose 500 */
    --text-color: #334155;
    /* Slate 700 */
    --bg-color: #F8FAFC;
    /* Slate 50 */
    --white: #FFFFFF;
    --light-gray: #E2E8F0;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Mulish', sans-serif;

    --container-width: 1140px;
    --header-height: 70px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* UI Components */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn--primary {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.btn--outline {
    border-color: var(--white);
    color: var(--white);
}

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

.btn--sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 15px;
}

.btn--full {
    width: 100%;
}

.section {
    padding: 80px 0;
}

.section__title {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 auto 3rem;
    position: relative;
    display: block;
    width: fit-content;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav__link:hover {
    color: var(--accent-color);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav__close {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.nav__close:hover {
    background-color: var(--light-gray);
    color: var(--accent-color);
    transform: rotate(90deg);
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') no-repeat center/cover;
    animation: heroBgZoom 20s ease-in-out infinite;
}

@keyframes heroBgZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero__gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(244, 63, 94, 0.15) 100%);
}

.hero__animated-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(244, 63, 94, 0.05));
    filter: blur(40px);
    animation: float 15s ease-in-out infinite;
}

.shape--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape--2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape--3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape--4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero__badge-wrapper {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.badge {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.badge--animated {
    animation: badgePulse 3s ease-in-out infinite;
}

.badge:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.badge__icon {
    font-size: 1.1rem;
}

.badge__text {
    font-weight: 500;
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.hero__text-block {
    margin-bottom: 40px;
    width: 100%;
}

.hero__title-accent {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(244, 63, 94, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.hero__title-wrapper {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero__title-line {
    display: block;
    animation: titleSlideIn 0.8s ease-out backwards;
}

.hero__title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero__title-line--highlight {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero__title-line--highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.5;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__subtitle-wrapper {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.92;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-preview i {
    color: var(--accent-color);
    font-size: 1rem;
}

.hero__actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
}

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

.btn--hero-primary {
    position: relative;
    overflow: hidden;
    padding: 16px 32px;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.btn--hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn--hero-primary .btn__text,
.btn--hero-primary .btn__icon {
    position: relative;
    z-index: 1;
}

.btn--hero-primary .btn__icon {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn--hero-primary:hover .btn__icon {
    transform: translateX(5px);
}

.btn--hero-outline {
    padding: 16px 32px;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.btn--hero-outline .btn__icon {
    margin-left: 8px;
}

.btn--hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
}

.stat-item__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-item__label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateY(5px);
}

.scroll-indicator__text {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator__arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    font-size: 1.2rem;
    opacity: 0.8;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Features */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Services */
.services {
    background-color: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item__content {
    padding: 25px;
}

/* Reviews */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.stars {
    color: #FBBF24;
}

/* Contacts */
.contacts {
    background-color: var(--bg-color);
}

.contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contacts__info {
    padding-top: 40px;
}

.contacts__info h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contacts__form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contacts__list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contacts__list i {
    color: var(--accent-color);
    width: 25px;
}

.contacts__form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--accent-color);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-group label {
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 80px;
}

.error-msg {
    color: red;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.form-loader,
.form-success {
    display: none;
    text-align: center;
    margin-top: 15px;
}

.form-success {
    color: green;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-gray);
    padding: 60px 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.logo--footer {
    color: var(--white);
    margin-bottom: 15px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    /* Hidden */
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 12px;
    padding: 30px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow-y: auto;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .section__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        border-top: 1px solid var(--light-gray);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .burger.hidden {
        display: none !important;
    }

    .nav__close.visible {
        display: flex !important;
    }

    .nav__close:hover {
        background-color: var(--light-gray);
        color: var(--accent-color);
        transform: rotate(90deg);
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__title-line {
        font-size: 0.9em;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__features-preview {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero__actions-wrapper {
        gap: 25px;
    }

    .section__title {
        font-size: 2rem;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts__wrapper {
        gap: 40px;
    }

    .contacts__info {
        padding-top: 0;
    }

    .contacts__form {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero__container {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero__title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero__title-line {
        font-size: 1em;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero__title-accent {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        min-height: 48px;
    }

    .btn--hero-primary,
    .btn--hero-outline {
        width: 100%;
        min-height: 48px;
    }

    .hero__features-preview {
        gap: 10px;
    }

    .feature-preview {
        font-size: 0.9rem;
    }

    .hero__actions-wrapper {
        gap: 20px;
    }

    .hero__text-block {
        margin-bottom: 30px;
    }

    .hero__subtitle-wrapper {
        margin-bottom: 25px;
    }

    .shape {
        display: none;
    }

    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item__content {
        padding: 20px;
    }

    /* Reviews */
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 25px;
    }

    /* Contacts */
    .contacts__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts__info {
        padding-top: 0;
    }

    .contacts__info h3,
    .contacts__form h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .contacts__form {
        padding: 30px 25px;
    }

    .contacts__list li {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer {
        padding: 40px 0 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    .section__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Header */
    .header {
        height: 60px;
    }

    .header__container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .burger {
        padding: 5px;
    }

    .burger span {
        width: 22px;
        height: 2.5px;
    }

    /* Hero */
    .hero {
        min-height: 450px;
        margin-top: 60px;
    }

    .hero__container {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__title-accent {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .badge__icon {
        font-size: 1rem;
    }

    .hero__features-preview {
        gap: 8px;
    }

    .feature-preview {
        font-size: 0.85rem;
    }

    .feature-preview i {
        font-size: 0.9rem;
    }

    .hero__actions-wrapper {
        gap: 15px;
    }

    .hero__text-block {
        margin-bottom: 25px;
    }

    .hero__subtitle-wrapper {
        margin-bottom: 20px;
    }

    .hero__title-wrapper {
        margin-bottom: 20px;
    }

    /* Features */
    .feature-card {
        padding: 20px;
    }

    .feature-card__icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* Services */
    .service-item__img {
        height: 180px;
    }

    .service-item__content {
        padding: 18px;
    }

    /* Reviews */
    .review-card {
        padding: 20px;
    }

    .review-card__avatar {
        width: 45px;
        height: 45px;
    }

    .review-card__header {
        gap: 12px;
        margin-bottom: 12px;
    }

    /* Contacts */
    .contacts__form {
        padding: 25px 20px;
    }

    .contacts__info h3,
    .contacts__form h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

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

    .form-group input {
        padding: 12px 14px;
        font-size: 16px;
        min-height: 48px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .captcha-group label {
        font-size: 1rem;
        min-width: auto;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer {
        padding: 35px 0 15px;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Cookie Popup */
    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    /* Modal */
    .modal {
        width: 95%;
        padding: 25px 20px;
        max-height: 85vh;
    }

    .modal-content h3 {
        font-size: 1.3rem;
    }

    /* Touch improvements */
    a,
    button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Better text readability */
    p,
    span,
    li {
        line-height: 1.7;
    }
}