/* === БАЗА === */
:root {
    --bg: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #0f0f0f;
    --text: #1a1a1a;
    --text-dim: #6b7280;
    --text-light: #ffffff;
    --accent: #7c3aed;
    --accent-hover: #6d28d9;
    --accent-light: #ede9fe;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

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

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

/* === ПРОГРЕСС-БАР === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s;
}

/* === КНОПКА НАВЕРХ === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* === АНИМАЦИИ === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === ШАПКА === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav a {
    font-size: 0.95rem;
    color: var(--text-dim);
    position: relative;
    transition: color 0.2s;
}

.nav a:not(.btn):hover { color: var(--text); }

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav a:not(.btn):hover::after { width: 100%; }

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* === КНОПКИ === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124,58,237,0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text);
}

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

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--bg-gray); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === HERO === */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    z-index: -1;
    will-change: transform;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 550px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.stat-divider {
    width: 1px;
    background: var(--border);
}

/* === СЕКЦИИ === */
.section { padding: 100px 0; }
.section-gray { background: var(--bg-gray); }
.section-dark { background: var(--bg-dark); color: var(--text-light); }

.section-header { margin-bottom: 50px; }

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
}

.section-desc {
    color: var(--text-dim);
    margin-top: 10px;
    font-size: 1.1rem;
}

.section-dark .section-desc { color: rgba(255,255,255,0.6); }

/* === АУДИТОРИЯ === */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.audience-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.audience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.audience-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* === ПРОЦЕСС === */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.process-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.process-arrow {
    position: absolute;
    right: -30px;
    top: 20px;
    color: var(--accent);
}

/* === КАРТОЧКИ === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 200px;
    background: var(--bg-gray);
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-img-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--bg-gray);
}

.card-body { padding: 28px; }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.card-title { font-size: 1.2rem; font-weight: 600; }

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    background: var(--accent);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-dim);
}

.card-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.card-price span { font-size: 0.9rem; color: var(--text-dim); font-weight: 400; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--accent);
    transition: gap 0.2s;
}

.card-link:hover { gap: 12px; }

.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    background: var(--bg-gray);
    color: var(--text-dim);
    border: 1px solid var(--border);
}

/* === ЦЕНЫ === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--accent);
    background: rgba(124,58,237,0.1);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pricing-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-old {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-time {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features svg { color: var(--accent); flex-shrink: 0; }

.pricing-card .btn { width: 100%; justify-content: center; }

/* === ГАРАНТИИ === */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.guarantee-card {
    padding: 30px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.guarantee-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.guarantee-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* === ТЕХНОЛОГИИ === */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.tech-card {
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.tech-name {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.tech-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

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

.faq-question svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* === КОНТАКТЫ === */
.contact-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-block > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item { text-align: left; }

.contact-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.contact-item a,
.contact-item span { color: var(--text-light); font-size: 1rem; }

.contact-item a:hover { color: var(--accent); }

/* === ФУТЕР === */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 4px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* === МОБИЛЬНАЯ === */
@media (max-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .process-arrow { display: none; }
    .process-wrapper { gap: 30px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    
    .hero { padding: 130px 0 70px; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    
    .section { padding: 70px 0; }
    
    .audience-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .guarantees-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    
    .process-wrapper { flex-direction: column; }
    .process-step { flex-direction: row; text-align: left; gap: 20px; }
    .process-num { margin-bottom: 0; }
    
    .contact-info { flex-direction: column; align-items: center; gap: 20px; }
    .contact-item { text-align: center; }
    
    .footer-inner { flex-direction: column; text-align: center; }
    
    .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}

/* === ВИДЕО ФОН === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 120px 0 80px;
}

.hero-content .hero-title { color: white; }
.hero-content .hero-desc { color: rgba(255,255,255,0.8); }

.btn-ghost-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* === СТАТИСТИКА === */
.stats-bar {
    background: var(--bg-dark);
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stats-bar .stat { text-align: center; }
.stats-bar .stat-value { color: white; font-size: 1.5rem; }
.stats-bar .stat-label { color: rgba(255,255,255,0.6); }

/* === ФОРМА === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form .btn { width: 100%; justify-content: center; }

.form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.form-note a { color: var(--accent); }

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-dark);
    color: white;
    padding: 16px 32px;
    font-size: 0.95rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid #ef4444; }

/* === 404 === */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 32px;
}

/* === LEGAL PAGE === */
.legal-page {
    padding: 120px 0 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-dim);
    margin-bottom: 40px;
}

.legal-page section {
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
}

/* === МОБИЛЬНОЕ МЕНЮ === */
.nav.active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 15px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === МОБИЛЬНЫЕ ФОРМЫ === */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .stats-grid {
        gap: 30px;
    }
}

/* === ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ === */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.additional-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    gap: 20px;
    transition: all 0.3s;
}

.additional-card:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.additional-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.additional-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.additional-price {
    text-align: right;
    flex-shrink: 0;
}

.additional-price .price-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.additional-price .price-unit {
    font-size: 0.85rem;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .additional-price {
        text-align: left;
    }
}
