/* ============================================
   ЛЕНДИНГ - ПОЛНЫЙ СТИЛЬ
   ============================================ */

/* AppBar */
.landing-appbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(49, 112, 143, 0.04);
    width: 100%;
}

.landing-appbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-appbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 20px;
    color: #1A1A2E;
}

.landing-appbar-logo .material-icons {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
}

.landing-appbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-appbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-family);
    gap: 8px;
}

.landing-appbar-btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(49, 112, 143, 0.15);
}

.landing-appbar-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(49, 112, 143, 0.2);
}

/* ============================================
   Хиро секция
   ============================================ */
.hero-section {
    padding: 60px 24px 40px;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: #1A1A2E;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(26, 26, 46, 0.6);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-stat .stat-number {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-label {
    font-size: clamp(12px, 1.2vw, 15px);
    color: rgba(26, 26, 46, 0.5);
    margin-top: 4px;
}

/* ============================================
   Преимущества
   ============================================ */
.features-section {
    padding: 0 24px 40px;
    width: 100%;
}

.features-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.features-title .material-icons {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(28px, 3.5vw, 40px);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.7);
}

.feature-card .material-icons {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card .feature-name {
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 18px);
    color: #1A1A2E;
    margin-bottom: 4px;
}

.feature-card .feature-desc {
    font-size: clamp(12px, 1vw, 14px);
    color: rgba(26, 26, 46, 0.5);
    line-height: 1.5;
}

/* ============================================
   Калькулятор
   ============================================ */
.calculator-section {
    padding: 0 24px 40px;
    width: 100%;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calculator-card:hover {
    box-shadow: var(--shadow-lg);
}

.calculator-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calculator-title .material-icons {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(28px, 3.5vw, 36px);
}

.service-type-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.type-btn {
    padding: clamp(12px, 1.5vw, 18px) 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(49, 112, 143, 0.06);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 600;
    color: rgba(26, 26, 46, 0.5);
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
}

.type-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-sm);
}

.type-btn span {
    position: relative;
    z-index: 1;
}

.type-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-mid);
    box-shadow: 0 4px 20px rgba(49, 112, 143, 0.1);
}

.type-btn.active {
    border-color: var(--primary-accent);
    color: white !important;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.15);
}

.type-btn.active::before {
    opacity: 1;
}

.type-btn.active span {
    color: white !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.5vw, 18px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    border: 2px solid rgba(49, 112, 143, 0.06);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 500;
    color: rgba(26, 26, 46, 0.7);
}

.service-check:hover {
    background: rgba(49, 112, 143, 0.02);
    border-color: rgba(49, 112, 143, 0.15);
    transform: translateY(-2px);
}

.service-check.checked {
    border-color: var(--primary-accent);
    background: rgba(233, 69, 96, 0.04);
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.06);
}

.service-check .material-icons {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(49, 112, 143, 0.2);
    transition: all 0.3s ease;
}

.service-check.checked .material-icons {
    color: var(--primary-accent);
}

.service-check .service-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary-accent);
    font-size: clamp(11px, 1vw, 13px);
}

.total-price {
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    padding: clamp(14px, 2vw, 20px) clamp(18px, 2.5vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 20px;
    box-shadow: 0 4px 20px rgba(49, 112, 143, 0.15);
    animation: fadeInUp 0.4s ease-out;
}

.total-price-label {
    font-weight: 700;
    color: white;
    font-size: clamp(15px, 1.5vw, 18px);
}

.total-price-value {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: white;
}

.btn-submit-order {
    width: 100%;
    padding: clamp(16px, 2vw, 22px);
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 24px rgba(49, 112, 143, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.btn-submit-order:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 40px rgba(49, 112, 143, 0.2);
}

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

/* ============================================
   АККОРДЕОНЫ (Что входит в уборку)
   ============================================ */
.services-desc-section {
    padding: 0 24px 40px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.services-desc-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.services-desc-title .material-icons {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(28px, 3.5vw, 36px);
}

.service-accordion {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-accordion:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    padding: clamp(16px, 2vw, 22px) clamp(18px, 2.5vw, 28px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
}

.accordion-header:hover {
    background: rgba(49, 112, 143, 0.03);
}

.accordion-header .accordion-title {
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 20px);
    color: #1A1A2E;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.accordion-header .accordion-title .badge-price {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 2px 12px;
    border-radius: 20px;
}

.accordion-header .material-icons {
    transition: transform 0.4s ease;
    color: rgba(26, 26, 46, 0.3);
    font-size: clamp(24px, 2.5vw, 30px);
}

.accordion-header.active .material-icons {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    padding: 0 clamp(18px, 2.5vw, 28px) clamp(18px, 2.5vw, 28px);
    animation: fadeInUp 0.4s ease-out;
}

.accordion-body.open {
    display: block;
}

.accordion-body .work-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    padding: 16px 0 8px;
}

.accordion-body .work-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(26, 26, 46, 0.7);
    padding: 4px 0;
}

.accordion-body .work-item .material-icons {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--primary-accent);
}

.accordion-body .work-desc {
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(26, 26, 46, 0.5);
    padding: 8px 0 4px;
    line-height: 1.7;
}

/* ============================================
   ПОДВАЛ
   ============================================ */
.landing-footer {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--glass-blur);
    padding: clamp(24px, 4vw, 48px) 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 8px;
}

.footer-col p {
    font-size: clamp(13px, 1vw, 15px);
    color: rgba(26, 26, 46, 0.5);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(49, 112, 143, 0.04);
    font-size: clamp(12px, 1vw, 14px);
    color: rgba(26, 26, 46, 0.3);
}

/* ============================================
   МОДАЛЬНОЕ ОКНО АВТОРИЗАЦИИ
   ============================================ */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.auth-modal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: fadeInUp 0.4s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #1A1A2E;
}

.auth-modal-close:hover {
    background: rgba(233, 69, 96, 0.1);
    transform: rotate(90deg) scale(1.1);
}

.auth-modal-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 6px;
}

.auth-modal-subtitle {
    font-size: clamp(14px, 1.2vw, 17px);
    color: rgba(26, 26, 46, 0.5);
    text-align: center;
    margin-bottom: 24px;
}

.auth-modal .btn-login {
    width: 100%;
    padding: clamp(14px, 1.5vw, 18px);
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(49, 112, 143, 0.12);
    margin-top: 8px;
}

.auth-modal .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(49, 112, 143, 0.2);
}

.auth-modal .btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-send-code-full {
    width: 100%;
    padding: clamp(14px, 1.5vw, 18px);
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(49, 112, 143, 0.12);
}

.btn-send-code-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(49, 112, 143, 0.2);
}

.btn-send-code-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.auth-buttons .btn-login {
    margin-top: 0;
}

.auth-modal .error-message {
    color: var(--primary-accent);
    font-size: clamp(13px, 1.1vw, 15px);
    text-align: center;
    min-height: 20px;
    padding: 4px;
    border-radius: var(--radius-sm);
}

.auth-modal .success-message {
    color: var(--primary-dark);
    font-size: clamp(13px, 1.1vw, 15px);
    text-align: center;
    min-height: 20px;
    padding: 4px;
    border-radius: var(--radius-sm);
}

.auth-modal .info-message {
    color: #1A1A2E;
    font-size: clamp(13px, 1.1vw, 15px);
    text-align: center;
    min-height: 20px;
    padding: 4px;
    background: rgba(49, 112, 143, 0.04);
    border-radius: var(--radius-sm);
}

.consent-group {
    margin: 12px 0 16px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(26, 26, 46, 0.6);
}

.consent-label input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary-accent);
    cursor: pointer;
}

.consent-text {
    flex: 1;
}

.consent-link {
    color: var(--primary-mid);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

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

.code-group-hidden {
    display: none;
}

.code-group-hidden.visible {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

/* ============================================
   МОДАЛКА ДОКУМЕНТОВ
   ============================================ */
.doc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.doc-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.doc-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.doc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.doc-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #1A1A2E;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doc-modal-close {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #1A1A2E;
}

.doc-modal-close:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--primary-accent);
    transform: rotate(90deg) scale(1.05);
}

.doc-modal-body {
    overflow-y: auto;
    padding-right: 4px;
    flex: 1;
}

.doc-modal-body::-webkit-scrollbar {
    width: 4px;
}

.doc-modal-body::-webkit-scrollbar-track {
    background: rgba(49, 112, 143, 0.05);
    border-radius: 10px;
}

.doc-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-mid);
    border-radius: 10px;
}

.doc-modal-body p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(26, 26, 46, 0.7);
    margin-bottom: 12px;
}

.doc-modal-body h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 16px 0 8px;
}

.doc-modal-body ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.doc-modal-body li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(26, 26, 46, 0.7);
}

.doc-loading {
    text-align: center;
    padding: 40px 0;
    color: rgba(26, 26, 46, 0.4);
}

/* ============================================
   УНИВЕРСАЛЬНАЯ МОДАЛКА УВЕДОМЛЕНИЙ
   ============================================ */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.notification-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.notification-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.4s ease-out;
}

.notification-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.notification-modal-icon.info {
    background: rgba(49, 112, 143, 0.1);
    color: var(--primary-mid);
}

.notification-modal-icon.success {
    background: rgba(81, 133, 165, 0.1);
    color: var(--primary-mid);
}

.notification-modal-icon.error {
    background: rgba(233, 69, 96, 0.1);
    color: var(--primary-accent);
}

.notification-modal-icon.warning {
    background: rgba(233, 69, 96, 0.1);
    color: var(--primary-accent);
}

.notification-modal-icon .material-icons {
    font-size: 32px;
}

.notification-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 6px;
}

.notification-modal-text {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.notification-modal-btn {
    padding: 10px 32px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.notification-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 112, 143, 0.2);
}

.notification-modal-btn.secondary {
    background: rgba(255, 255, 255, 0.6);
    color: #1A1A2E;
    border: 1px solid rgba(49, 112, 143, 0.15);
    margin-left: 8px;
}

.notification-modal-btn.secondary:hover {
    background: rgba(49, 112, 143, 0.05);
}

/* ============================================
   АДАПТИВ
   ============================================ */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 16px 30px;
    }
    .hero-section {
        padding: 40px 16px 30px;
    }
    .calculator-section {
        padding: 0 16px 30px;
    }
    .calculator-card {
        padding: 20px 16px;
    }
    .service-type-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .services-desc-section {
        padding: 0 16px 30px;
    }
    .accordion-body .work-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .landing-appbar {
        padding: 12px 16px;
    }
    .landing-appbar-logo {
        font-size: 16px;
    }
    .landing-appbar-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .feature-card {
        padding: 14px 12px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .hero-stat {
        padding: 12px;
    }
    .auth-modal-content {
        padding: 24px 16px;
    }
    .doc-modal-content {
        padding: 20px 16px;
    }
    .notification-modal-content {
        padding: 24px 16px;
    }
    .accordion-header {
        padding: 14px 16px;
    }
    .accordion-body {
        padding: 0 16px 16px;
    }
}

@media (min-width: 1024px) {
    .landing-appbar {
        padding: 20px 48px;
    }
    .hero-section {
        padding: 80px 48px 48px;
    }
    .features-section {
        padding: 0 48px 48px;
    }
    .calculator-section {
        padding: 0 48px 48px;
    }
    .services-desc-section {
        padding: 0 48px 48px;
    }
    .landing-footer {
        padding: 48px 48px 24px;
    }
}

/* ============================================
   ОБЩИЕ КЛАССЫ
   ============================================ */
.hidden {
    display: none !important;
}

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(49, 112, 143, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-dark);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
