:root {
	--primary: #1a365d;
	--secondary: #2c5282;
	--accent: #3182ce;
	--light: #ebf8ff;
	--dark: #2d3748;
	--gray: #718096;
	--light-gray: #e2e8f0;
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	color: var(--dark);
	line-height: 1.6;
	background-color: var(--white);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

.logo a {
	color: var(--primary);
	text-decoration: none;
}

.logo span {
	color: var(--accent);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: var(--accent);
}
/* 
.cta-button {
	background-color: var(--accent);
	color: var(--white);
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: var(--secondary);
}
 */
/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	padding: 150px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/mee_00.webp') center/cover no-repeat;
	opacity: 0.15;
	z-index: 0;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 42px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.hero a {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.secondary-button {
	background-color: transparent;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.secondary-button:hover {
	background-color: var(--white);
	color: var(--primary);
}

/* Features Section */
.features {
	padding: 100px 0;
	background-color: var(--white);
}

.section-title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 60px;
	color: var(--primary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 30px;
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 20px;
	background-color: var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
}

/* How It Works */
.how-it-works {
	padding: 100px 0;
	background-color: var(--light);
}

.steps {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	flex-wrap: wrap;
}

.step {
	flex: 1;
	min-width: 250px;
	text-align: center;
	padding: 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 20px;
	background-color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 3px solid var(--accent);
}

.step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.step-number {
	width: 50px;
	height: 50px;
	background: var(--accent);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto 20px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.step h3 {
	margin-bottom: 15px;
	color: var(--primary);
}

.step:not(:last-child)::after {
	content: "→";
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	color: var(--accent);
}

/* Example Section */
.example {
	padding: 100px 0;
	background-color: var(--white);
}

.example-content {
	display: flex;
	gap: 40px;
	align-items: center;
}

.example-image {
	flex: 1;
}

.example-image img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.example-transcript {
	flex: 1;
}

.example-transcript pre {
	background: var(--light);
	padding: 20px;
	border-radius: 8px;
	overflow-x: auto;
	font-family: monospace;
	white-space: pre-wrap;
	line-height: 1.5;
	max-height: 300px;
}

/* CTA Section *//*
.cta-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/mee_01.webp') center/cover no-repeat;
	opacity: 0.15;
	z-index: 0;
}

.cta-section .container {
	position: relative;
	z-index: 1;
}

.cta-section h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.cta-section p {
	max-width: 700px;
	margin: 0 auto 30px;
	font-size: 18px;
	opacity: 0.9;
}
*/
/* Pricing Section */
/*
.pricing {
	padding: 100px 0;
	background-color: var(--white);
}

.pricing-plans {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.pricing-plan {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 40px 30px;
	text-align: center;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	border: 1px solid var(--light-gray);
}

.popular-plan {
	border: 2px solid var(--accent);
	position: relative;
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--white);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.pricing-plan h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--primary);
}

.price {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary);
}

.price span {
	font-size: 16px;
	font-weight: 400;
	color: var(--gray);
}

.pricing-features {
	list-style: none;
	margin: 30px 0;
	text-align: left;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
	border-bottom: none;
}
*/
/* Contact Section */
.contact {
	padding: 100px 0;
	background-color: var(--light);
}

.contact-container {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.contact-method {
	display: flex;
	align-items: center;
}

.contact-icon {
	font-size: 24px;
	color: var(--accent);
	margin-right: 15px;
}

/* Footer */
footer {
	background-color: var(--primary);
	color: var(--white);
	padding: 50px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	flex: 1;
	min-width: 200px;
}

.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--accent);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: var(--light-gray);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: var(--accent);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	color: var(--light-gray);
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 32px;
	}
	
	.steps {
		flex-direction: column;
	}
	
	.step:not(:last-child)::after {
		content: "↓";
		right: 50%;
		top: auto;
		bottom: -20px;
		left: auto;
		transform: translateX(50%);
	}
	
	.example-content {
		flex-direction: column;
	}
	
	nav ul {
		display: none;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 10px;
	}
}
			
.transcripts-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.transcript-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 900px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transcript-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
/*
.card-header {
	position: relative;
	height: 280px;
	overflow: hidden;
}
*/
.poster-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: white;
}

.poster-title {
	font-size: 1.8rem;
	margin-bottom: 5px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.poster-subtitle {
	font-size: 1rem;
	opacity: 0.9;
}

.poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.transcript-card:hover .poster {
	transform: scale(1.03);
}

.card-content {
	padding: 30px;
}

.language-label {
	display: inline-block;
	padding: 5px 15px;
	background: #1a2a6c;
	color: white;
	border-radius: 20px;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 0.9rem;
}

.transcript {
	max-height: 400px;
	overflow-y: auto;
	padding-right: 15px;
}

.message {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.message:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.speaker {
	font-weight: bold;
	color: #1a2a6c;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.timestamp {
	font-size: 0.85rem;
	color: #b21f1f;
	margin-bottom: 8px;
	display: inline-block;
	background: #f8f8f8;
	padding: 3px 8px;
	border-radius: 4px;
}

.text {
	font-size: 1rem;
	line-height: 1.6;
}


@media (max-width: 768px) {
	.card-header {
		height: 220px;
	}
	
	.poster-title {
		font-size: 1.5rem;
	}
	
	.card-content {
		padding: 20px;
	}
	
}

/* Стилизация скроллбара */
.transcript::-webkit-scrollbar {
	width: 8px;
}

.transcript::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.transcript::-webkit-scrollbar-thumb {
	background: #b21f1f;
	border-radius: 10px;
}

.transcript::-webkit-scrollbar-thumb:hover {
	background: #1a2a6c;
}

/* ======================================== */


.cta-button {
	background-color: var(--accent);
	color: var(--white);
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: var(--secondary);
}

.secondary-button {
	background-color: transparent;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.secondary-button:hover {
	background-color: var(--white);
	color: var(--primary);
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/mee_01.webp') center/cover no-repeat;
	opacity: 0.15;
	z-index: 0;
}

.cta-section .container {
	position: relative;
	z-index: 1;
}

.cta-section h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.cta-section p {
	max-width: 700px;
	margin: 0 auto 30px;
	font-size: 18px;
	opacity: 0.9;
}

/* Pricing Section */
.pricing {
	padding: 100px 0;
	background-color: var(--white);
}

.pricing-plans {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.pricing-plan {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 40px 30px;
	text-align: center;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	border: 1px solid var(--light-gray);
}

.popular-plan {
	border: 2px solid var(--accent);
	position: relative;
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--white);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.pricing-plan h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--primary);
}

.price {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary);
}

.price span {
	font-size: 16px;
	font-weight: 400;
	color: var(--gray);
}

.pricing-features {
	list-style: none;
	margin: 30px 0;
	text-align: left;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
	border-bottom: none;
}

@media (max-width: 768px) {	
	nav ul {
		display: none;
	}
}

.card-header {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.card-content {
	padding: 30px;
}

.text {
	font-size: 1rem;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.card-header {
		height: 220px;
	}
	
	
	.card-content {
		padding: 20px;
	}
}

/* Контейнер для кнопок в карточках */
.pricing-buttons {
    display: flex;
    flex-direction: column; /* Кнопки вертикально */
    gap: 10px;
    margin-top: 20px;
    align-items: center; /* Выравнивание по центру */
}

.pricing-buttons button {
    width: 100%; /* Кнопки на всю ширину */
    max-width: 250px; /* Максимальная ширина */
}

/* Стили для раздела с описанием тарифов */

/* Улучшение для описания тарифов */
.tariff-description {
    background: var(--light);
    padding: 70px 30px 30px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

/* Для мобильных адаптируем кнопки */
@media (max-width: 768px) {
    .pricing-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-buttons button {
        max-width: none;
        flex: 1;
        min-width: 120px;
    }
}

/* Добавлю в конец файла */

.tariff-description h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.tariff-description ul {
    margin: 20px 0;
    padding-left: 20px;
}


.tariff-description li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

/* 
.tariff-description li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 20px;
}
*/


/* ================== 1 */

/* Добавлю в конец файла */

/* Новый стиль для кнопок "Подробнее" */
.details-button {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 250px;
    margin-top: 10px;
}

.details-button:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Упрощенный стиль для coming soon */
.coming-soon-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--light-gray);
    color: var(--gray);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
}

/* Приглушенные стили для будущих тарифов */
.pricing-plan.coming-soon {
    position: relative;
    opacity: 0.9;
    border: 1px solid var(--light-gray);
}

.pricing-plan.coming-soon h3,
.pricing-plan.coming-soon .price {
    color: var(--gray);
}

.pricing-plan.coming-soon .pricing-features li {
    color: var(--gray);
    border-bottom: 1px solid #eaeaea;
}


.tariff-details {
	padding: 0 0 100px 0;
	background-color: var(--white);
}
