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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: #FA5255;
    color: white;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(250, 82, 85, 0.4);
}

.btn--primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header__cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FA5255 0%, #ff7675 100%);
    color: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(250, 82, 85, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header__cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(250, 82, 85, 0.4);
}

.header__cta:active {
    transform: translateY(0) scale(1.02);
}

.header__logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FA5255 0%, #ff7675 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    transition: all 0.3s ease;
}

.header__logo h1:hover {
    transform: scale(1.02);
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
}

.header__nav-link:hover {
    color: #FA5255;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FA5255 0%, #ff7675 100%);
    transition: width 0.3s ease;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__phone {
    font-weight: 600;
    color: #FA5255;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.header__phone:hover {
    color: #ff7675;
    transform: scale(1.05);
}

.header__phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FA5255;
    transition: width 0.3s ease;
}

.header__phone:hover::after {
    width: 100%;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23FA5255" opacity="0.05" points="0,1000 1000,0 1000,1000"/><polygon fill="%23ff7675" opacity="0.03" points="0,0 1000,1000 0,1000"/></svg>');
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.benefit__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #FA5255;
}

.benefit__item i {
    font-size: 2.5rem;
    color: #FA5255;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit__item:hover i {
    transform: scale(1.1);
    color: #ff7675;
}

.benefit__item span {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    color: #FA5255;
    border: 2px solid #FA5255;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: #FA5255;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 82, 85, 0.3);
}

.hero__contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.hero__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.hero__contact-item i {
    color: #FA5255;
    font-size: 1.1rem;
}

.hero__contact-item a {
    color: #FA5255;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero__contact-item a:hover {
    color: #ff7675;
    text-decoration: underline;
}

/* Section Titles */
.section__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service__card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service__icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(250, 82, 85, 0.3);
}

.service__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.service__card:hover .service__title {
    color: #FA5255;
}

.service__description {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service__card:hover .service__description {
    color: #555;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.about__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat__item {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: #666;
    font-size: 0.9rem;
}

.about__image {
    display: flex;
    justify-content: center;
}

.image__placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact__info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact__info-text a {
    color: #667eea;
    font-weight: 500;
}

.contact__info-text span {
    color: #666;
}

.contact__messengers {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.contact__messengers h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.messenger__buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.messenger__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.messenger__btn--telegram {
    background: #0088cc;
    color: white;
}

.messenger__btn--telegram:hover {
    background: #006ba3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.messenger__btn--whatsapp {
    background: #25D366;
    color: white;
}

.messenger__btn--whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.messenger__btn--viber {
    background: #665CAC;
    color: white;
}

.messenger__btn--viber:hover {
    background: #564b9c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 92, 172, 0.4);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 999;
    background: white;
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.mobile-sticky-cta__btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact__form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer__description {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #ecf0f1;
}

.footer__services {
    list-style: none;
}

.footer__services li {
    margin-bottom: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer__bottom p {
    margin: 0.5rem 0;
}

/* Trust Layer Section */
.trust {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23FA5255" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23FA5255" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23FA5255" opacity="0.1"/></svg>');
    pointer-events: none;
}

.trust__brands {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand__logo {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.brand__logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(250, 82, 85, 0.15);
}

.brand__logo i {
    font-size: 2.5rem;
    color: #FA5255;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.brand__logo:hover i {
    transform: scale(1.2) rotate(10deg);
}

.brand__logo span {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.trust__testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial__card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(250, 82, 85, 0.1);
}

.testimonial__card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FA5255;
    opacity: 0.3;
}

.testimonial__text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    font-weight: 600;
    color: #FA5255;
    font-size: 0.9rem;
}

.trust__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust__stat-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust__stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 82, 85, 0.15);
}

.trust__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FA5255;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.trust__stat-item:hover .trust__stat-number {
    transform: scale(1.1);
}

.trust__stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Free Tool Section */
.free-tool {
    padding: 100px 0;
    background: linear-gradient(135deg, #FA5255 0%, #ff7675 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.free-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.1"/><circle cx="30" cy="90" r="0.5" fill="white" opacity="0.1"/></svg>');
    pointer-events: none;
}

.free-tool__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.free-tool__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.free-tool__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.free-tool__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature__item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.feature__item i {
    width: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature__item:hover i {
    color: white;
    transform: scale(1.2);
}

.free-tool__lead-magnet {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    max-width: 500px;
    margin: 0 auto;
}

.lead-magnet__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lead-magnet__subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.lead-magnet__form-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-magnet__cta {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.free-tool__calculator {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.free-tool__calculator:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calculator__title {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.calc__group {
    margin-bottom: 1.5rem;
}

.calc__group label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.calc__group input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    margin: 1rem 0;
}

.calc__group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #FA5255;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc__group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(250, 82, 85, 0.5);
}

.calc__value {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FA5255;
    margin-top: 0.5rem;
}

.calc__result {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.result__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.result__item:last-child {
    margin-bottom: 0;
}

.result__label {
    color: #666;
    font-size: 0.9rem;
}

.result__value {
    color: #FA5255;
    font-weight: 700;
    font-size: 1.1rem;
}

.calculator__cta {
    width: 100%;
    margin-top: 1rem;
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Micro-animations on hover */
.service__card,
.testimonial__card,
.trust__stat-item,
.free-tool__calculator {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service__card:hover,
.testimonial__card:hover,
.trust__stat-item:hover,
.free-tool__calculator:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Button press effect */
.btn:active {
    transform: scale(0.98);
    transition: all 0.1s ease;
}

/* Cursor effects */
.service__icon,
.brand__logo,
.trust__stat-item {
    cursor: pointer;
}

/* Active block highlighting */
.service__card:hover,
.testimonial__card:hover {
    box-shadow: 0 20px 40px rgba(250, 82, 85, 0.15);
    border: 1px solid rgba(250, 82, 85, 0.2);
}