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

:root {
    --primary-color: #FF5C35;
    --primary-dark: #E54A28;
    --secondary-color: #1A1A1A;
    --text-dark: #2D2D2D;
    --text-light: #6B6B6B;
    --bg-light: #F5F5F5;
    --bg-beige: #FAFAFA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Manrope', sans-serif;
    
    --transition: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo a {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.logo a:hover {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

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

.mobile-cta {
    margin-left: 24px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(255, 92, 53, 0.25);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section - Completely Rewritten */
.hero {
    background: var(--bg-light);
    padding: 100px 0;
}

.hero-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    padding-right: 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 16px 0;
}

.hero-description:last-child {
    margin-bottom: 0;
}

.hero-right {
    flex-shrink: 0;
    width: 500px;
}

/* Calculator Box - Completely Rewritten */
.calculator-box {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.calculator-heading {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 24px 0;
    text-align: center;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: block;
    margin: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.form-control {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 15px;
    background: #EEF2F6;
    transition: var(--transition);
    box-sizing: border-box;
    margin: 0;
}

.form-control:focus {
    outline: none;
    background: #E3E8EF;
}

.form-control::placeholder {
    color: #A0A0A0;
}

/* Индикация невыбранного города из списка */
.form-control[name="from"]:not([data-selected="true"]):not(:placeholder-shown),
.form-control[name="to"]:not([data-selected="true"]):not(:placeholder-shown) {
    border: 2px solid transparent;
    border-left: 3px solid #FFA500;
}

.form-control[name="from"][data-selected="true"],
.form-control[name="to"][data-selected="true"] {
    border: 2px solid transparent;
    border-left: 3px solid #4CAF50;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
}

.calc-submit-btn {
    display: block;
    width: 100%;
    margin: 4px 0 0 0;
    padding: 14px 24px;
    background: #A8B4C0;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
    transition: var(--transition);
}

.calc-submit-btn.active {
    background: var(--primary-color);
    cursor: pointer;
}

.calc-submit-btn.active:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 92, 53, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.advantage-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
    margin-bottom: 24px;
}

.icon-placeholder {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.advantage-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.advantage-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8E8E8 0%, #D8D8D8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 20px 0;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Workflow Section */
.workflow {
    background: var(--white);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.workflow-step {
    background: var(--bg-beige);
    padding: 36px 28px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.workflow-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.step-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: var(--bg-light);
    padding: 80px 0;
}

.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.review-card {
    min-width: 100%;
    padding: 60px 80px;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
    position: absolute;
    left: 0;
    top: 0;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-style: italic;
}

.review-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 8px;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D5D5D5 0%, #C0C0C0 100%);
}

.review-author {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.review-position {
    font-size: 15px;
    color: var(--text-light);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-dark);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form .btn-primary {
    width: 100%;
}

.delivery-notice {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 50px;
}

/* Contacts Section */
.contacts {
    background: var(--bg-beige);
    padding: 70px 0;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-bottom: 28px;
}

.contact-phone,
.contact-email {
    display: block;
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--primary-color);
}

.contact-address {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-address strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.company-details {
    max-width: 800px;
    margin: 40px auto 30px;
    padding: 30px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.company-name {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.company-info {
    margin-bottom: 24px;
    text-align: center;
}

.company-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.company-info strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.bank-details {
    background: var(--bg-beige);
    padding: 20px 24px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.bank-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.bank-details p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 36px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 40px;
    }
    
    .calculator-box {
        padding: 32px;
    }
}

@media (max-width: 1100px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-right {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: var(--transition);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 32px 20px;
        gap: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .calculator-box {
        padding: 28px;
    }
    
    .calculator-heading {
        font-size: 22px;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 40px 20px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-phone,
    .contact-email {
        font-size: 22px;
    }
    
    .company-details {
        padding: 24px 20px;
    }
    
    .company-name {
        font-size: 17px;
    }
    
    .company-info p,
    .bank-details p {
        font-size: 13px;
    }
    
    .bank-details {
        padding: 16px 18px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    background: var(--bg-light);
    padding: 100px 0 80px;
    min-height: calc(100vh - 300px);
}

.privacy-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.privacy-content p:last-of-type {
    margin-bottom: 0;
}

.privacy-subtitle {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 36px 0 16px 0;
}

.privacy-subtitle:first-of-type {
    margin-top: 28px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px 0;
}

.privacy-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.privacy-back {
    margin-top: 50px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

/* Responsive for Privacy Page */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 70px 0 60px;
    }
    
    .privacy-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .privacy-content {
        padding: 35px 25px;
    }
    
    .privacy-content p {
        font-size: 15px;
    }
    
    .privacy-subtitle {
        font-size: 20px;
    }
    
    .privacy-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 24px;
    }
    
    .privacy-content {
        padding: 25px 20px;
    }
}

/* Autocomplete Styles */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 4px 0 0 0;
    padding: 8px 0;
    max-height: 350px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    -webkit-overflow-scrolling: touch;
}

.autocomplete-list.active {
    display: block;
}

.autocomplete-list li {
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    color: var(--text-dark);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
}

.autocomplete-list li:hover,
.autocomplete-list li:active {
    background: #F5F7FA;
    color: var(--primary-color);
}

.autocomplete-list li.selected {
    background: #F5F7FA;
    color: var(--primary-color);
}

.autocomplete-list::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-list::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 10px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
    background: #D0D0D0;
    border-radius: 10px;
}

.autocomplete-list::-webkit-scrollbar-thumb:hover {
    background: #B0B0D0;
}

/* Mobile Autocomplete Styles */
@media (max-width: 768px) {
    .autocomplete-list {
        max-height: 200px;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        z-index: 10001;
    }
    
    .autocomplete-list li {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* Custom Notification Modal */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.notification-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.notification-modal.active .notification-content {
    transform: scale(1) translateY(0);
}

.notification-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.notification-icon.success {
    background: #E8F5E9;
    color: #4CAF50;
}

.notification-icon.error {
    background: #FFEBEE;
    color: #F44336;
}

.notification-icon.warning {
    background: #FFF3E0;
    color: #FF9800;
}

.notification-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 12px;
}

.notification-message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 28px;
    white-space: pre-line;
}

.notification-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.notification-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 92, 53, 0.3);
}

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

.advantage-card,
.service-item,
.workflow-step,
.review-card {
    animation: fadeInUp 0.5s ease-out;
}

