/* shopvds.ru/assets/css/styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4A90E2;
    --secondary-blue: #357ABD;
    --light-blue: #E8F4FF;
    --accent-orange: #FF6B35;
    --accent-red: #FF3B30;
    --success-green: #10B981;
    --text-dark: #0A1628;
    --text-gray: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --border-light: #E2E8F0;
    --container-width: 1280px;
    --content-width: 1100px;
    --header-height: 70px;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--secondary-blue);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container--content {
    max-width: var(--content-width);
}

.header {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s, opacity 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.95;
}

.nav {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav a {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav a:hover,
.nav a.active {
    color: var(--primary-blue);
}

.nav .phone {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
}

.btn-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    box-shadow: 0 2px 6px rgba(74,144,226,0.2);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(74,144,226,0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition-speed);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.footer-legal a:hover {
    color: white;
}

.footer-info {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(74,144,226,0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,144,226,0.4);
    color: white;
}

.main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-white) 100%);
    min-height: calc(100vh - var(--header-height) - 100px);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(74,144,226,0.08);
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.section ul {
    list-style: none;
}

.section ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.section ul.check-list li::before {
    content: "✅";
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-gray);
}

.btn-center {
    text-align: center;
    margin: 3rem 0;
}

.section-intro {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-box, .warning-box, .error-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box {
    background: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
}

.highlight-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #FEF2E5;
    border-left: 4px solid var(--accent-orange);
}

.warning-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.error-box {
    background: #FFF0F0;
    border-left: 4px solid var(--accent-red);
}

.error-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,144,226,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
}

.hero .gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(74,144,226,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74,144,226,0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.special-offer {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255,107,53,0.3);
    animation: pulse 2s infinite;
    cursor: pointer;
    display: block;
    transition: transform var(--transition-speed);
}

.special-offer:hover {
    transform: scale(1.03);
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.special-offer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.special-offer p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.custom-software-block {
    margin-top: 3rem;
    background: linear-gradient(135deg, #6B46C1 0%, #4C1D95 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(107,70,193,0.3);
    position: relative;
    overflow: hidden;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(107,70,193,0.3); }
    50% { box-shadow: 0 15px 50px rgba(107,70,193,0.5); }
}

.custom-software-block::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.custom-software-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.custom-software-content {
    position: relative;
    z-index: 1;
}

.custom-software-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.custom-software-text {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.custom-software-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.software-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.software-tag:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.custom-software-note {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    text-align: center;
    font-style: italic;
}

.tariffs {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.compare-link {
    text-align: center;
    margin-bottom: 3rem;
}

.compare-link button {
    background: none;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.compare-link button:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,144,226,0.3);
}

.tariff-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tabs, .period-toggle {
    display: flex;
    background: white;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(74,144,226,0.08);
}

.tab, .period-btn {
    padding: 0.7rem 1.3rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab:hover, .period-btn:hover {
    color: var(--primary-blue);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(74,144,226,0.3);
}

.period-btn {
    position: relative;
}

.period-btn.active {
    background: var(--success-green);
    color: white;
}

.discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-red);
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tariff-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.tariff-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(74,144,226,0.1);
    transform: translateY(-4px);
}

.tariff-card.popular {
    border-color: var(--primary-blue);
    background: linear-gradient(to bottom, white 0%, var(--light-blue) 100%);
    box-shadow: 0 15px 50px rgba(74,144,226,0.15);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    color: white;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 10px rgba(255,107,53,0.4);
}

.tariff-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.tariff-name {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.tariff-price-block {
    margin-top: 0.75rem;
}

.price-main-line {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.price-year-line {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.price-economy-line {
    font-size: 0.8rem;
    color: var(--success-green);
    font-weight: 600;
}

.tariff-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tariff-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.tariff-features li::before {
    content: none;
}

.feature-check {
    color: var(--success-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-value {
    font-weight: 700;
    color: var(--primary-blue);
}

.btn-order {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74,144,226,0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74,144,226,0.4);
    color: white;
}

.trial-info-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.tariff-card.popular .btn-order {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.tariff-card.popular .btn-order:hover {
    box-shadow: 0 6px 25px rgba(255,107,53,0.4);
}

.comparison-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
}

.comparison-modal.active {
    display: block;
}

.comparison-content {
    background: white;
    margin: 50px auto;
    max-width: 1200px;
    padding: 2rem;
    border-radius: 20px;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
}

.comparison-table-container {
    position: relative;
    width: 100%;
}

.comparison-table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    max-height: 80vh;
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    min-width: 1400px;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table thead th {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.comparison-table tbody td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--border-light);
    background: white;
    font-size: 0.9rem;
}

.comparison-table .sticky-col {
    position: sticky;
    left: 0;
    z-index: 5;
    background: var(--bg-light);
    font-weight: 600;
    text-align: left;
    min-width: 200px;
    border-right: 2px solid var(--primary-blue);
}

.comparison-table thead .sticky-col {
    z-index: 11;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

.comparison-table .section-header td {
    background: var(--light-blue);
    font-weight: 700;
    text-align: left;
    padding: 0.75rem 1rem;
    color: var(--secondary-blue);
    font-size: 1rem;
}

.comparison-table tr:hover td {
    background: var(--light-blue);
}

.comparison-table .sticky-col:hover {
    background: var(--light-blue);
}

.comparison-table .cross {
    color: var(--accent-red);
}

.comparison-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.comparison-footer .cross {
    color: var(--accent-red);
    font-weight: 700;
}

.comparison-table-wrapper::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(74,144,226,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(74,144,226,0.15);
    border-color: var(--primary-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.2s;
    font-size: 1.05rem;
}

.contact-link:hover {
    color: var(--secondary-blue);
    transform: translateX(4px);
}

.contact-highlight {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-highlight strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.email-large {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin: 0.5rem 0;
}

.email-large:hover {
    color: var(--secondary-blue);
}

.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.info-item {
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.schedule-table, .refund-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.schedule-table th,
.schedule-table td,
.refund-table th,
.refund-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.schedule-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.refund-table th {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.schedule-table td,
.refund-table td {
    background: white;
}

.refund-table tr:nth-child(even) td {
    background: var(--bg-light);
}

.refund-table tr:hover td {
    background: var(--light-blue);
}

.schedule-table tr:last-child td,
.refund-table tr:last-child td {
    border-bottom: none;
}

.badge-24-7 {
    display: inline-block;
    background: var(--success-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-card {
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,144,226,0.15);
    background: white;
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.commission-badge {
    display: inline-block;
    background: var(--success-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.security-list {
    list-style: none;
    margin-top: 1rem;
}

.security-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
}

.security-list li::before {
    content: "🔒";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
    margin: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
}

.timeline-item {
    position: relative;
    padding: 1.5rem 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.6rem;
    top: 1.5rem;
    width: 15px;
    height: 15px;
    background: var(--primary-blue);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-title {
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(74,144,226,0.08);
    border: 2px solid var(--border-light);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74,144,226,0.12);
    border-color: var(--primary-blue);
}

.service-feature-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.service-feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-feature-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.step-list, .process-steps {
    counter-reset: steps;
    list-style: none;
}

.step-list li, .process-steps li {
    counter-increment: steps;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    line-height: 1.8;
}

.process-steps li {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.process-steps li:last-child {
    border-bottom: none;
}

.step-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(74,144,226,0.3);
}

.process-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-list li strong, .process-steps li strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.faq-item {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 1000;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--success-green);
}

.notification-error {
    border-left: 4px solid var(--accent-red);
}

.notification-info {
    border-left: 4px solid var(--primary-blue);
}

@media screen and (max-width: 1024px) {
    :root {
        --container-width: 100%;
        --content-width: 100%;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .contacts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .service-features {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .main-content {
        padding: 2.5rem 0;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-software-block {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .custom-software-title {
        font-size: 1.4rem;
    }
    
    .custom-software-text {
        font-size: 1rem;
    }
    
    .custom-software-icon {
        font-size: 2.5rem;
    }
    
    .software-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .custom-software-note {
        font-size: 0.95rem;
    }
    
    .tariff-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .period-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .tariff-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-content {
        margin: 20px;
        padding: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
    
    .comparison-table .sticky-col {
        min-width: 150px;
    }
    
    .contacts-grid,
    .payment-methods-grid,
    .company-info,
    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-table,
    .refund-table {
        font-size: 0.9rem;
    }
    
    .schedule-table th,
    .schedule-table td,
    .refund-table th,
    .refund-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .contact-card,
    .payment-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 1.25rem;
    }
    
    .section h2 {
        font-size: 1.25rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }
    
    .special-offer {
        padding: 0.8rem 1.5rem;
    }
    
    .special-offer h3 {
        font-size: 1.2rem;
    }
    
    .special-offer p {
        font-size: 0.95rem;
    }
    
    .custom-software-block {
        padding: 1.75rem 1.25rem;
    }
    
    .custom-software-title {
        font-size: 1.2rem;
    }
    
    .custom-software-text {
        font-size: 0.95rem;
    }
    
    .software-tag {
        font-size: 0.8rem;
    }
    
    .tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .period-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .comparison-content {
        margin: 10px;
        padding: 1rem;
    }
    
    .comparison-header h2 {
        font-size: 1.2rem;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.4rem;
    }
    
    .comparison-table .sticky-col {
        min-width: 120px;
        font-size: 0.8rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .step-list li::before,
    .process-steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-list li,
    .process-steps li {
        padding-left: 3rem;
    }
    
    .service-feature-title {
        font-size: 1rem;
    }
    
    .service-feature-desc {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    .logo-img {
        height: 35px;
        max-width: 140px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}