/* AI Voice - Futuristic Cyberpunk Design with Glass Morphism */

/* ========== CSS Variables ========== */
:root {
    --primary-cyan: #00e5ff;
    --primary-magenta: #ff00ff;
    --dark-bg: #0a0a0f;
    --darker-bg: #05050a;
    --card-bg: rgba(15, 15, 25, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --accent-gradient: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.5);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Glass Morphism Effect ========== */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========== Header & Navigation ========== */
.header {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    filter: drop-shadow(var(--glow-cyan));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.header-phone {
    margin-left: 2rem;
}

.header-phone a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: var(--glow-cyan);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

/* ========== Buttons ========== */
.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

/* ========== Services Section ========== */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
    border-color: var(--primary-cyan);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

/* ========== Features Section ========== */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.05) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.feature-item h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

/* ========== Testimonials ========== */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.3);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary-cyan);
    margin: 0;
}

.testimonial-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

/* ========== CTA Section ========== */
.cta {
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    padding: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.3);
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========== Footer ========== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: drop-shadow(var(--glow-cyan));
}

.footer-section h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(var(--glow-cyan));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

/* ========== Cookie Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--primary-cyan);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 229, 255, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-secondary);
}

.cookie-content a {
    color: var(--primary-cyan);
}

/* ========== Page Hero ========== */
.page-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* ========== About Page ========== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.about-text h2 {
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 255, 0.05) 50%, transparent 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== Team Section ========== */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-magenta);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== Stats Section ========== */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 229, 255, 0.4);
}

.stat-card .stat-number {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    padding: 3rem;
}

.contact-form-wrapper h2 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
}

.form-message.error {
    background: rgba(255, 0, 100, 0.1);
    border: 1px solid #ff0064;
    color: #ff0064;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
}

.contact-info-card a:hover {
    color: var(--primary-cyan);
}

/* ========== Map Section ========== */
.map-section {
    padding: 80px 0;
}

.map-wrapper {
    padding: 2rem;
    border-radius: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-cyan);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-magenta);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

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

/* ========== Blog Page ========== */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gradient);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--primary-cyan);
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* ========== Newsletter Section ========== */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-wrapper {
    padding: 4rem;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
}

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

/* ========== Article Pages ========== */
.article-header {
    padding: 100px 0 60px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.article-category {
    background: var(--accent-gradient);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.article-lead {
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    margin: 2rem auto;
    display: block;
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.article-content {
    padding: 60px 0 100px;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-body {
    padding: 3rem;
}

.article-body h2 {
    color: var(--primary-cyan);
    margin: 2rem 0 1rem;
}

.article-body h3 {
    color: var(--primary-magenta);
    margin: 1.5rem 0 1rem;
}

.article-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    color: var(--text-secondary);
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.highlight-box {
    background: rgba(0, 229, 255, 0.05);
    border-left: 4px solid var(--primary-cyan);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box h3 {
    color: var(--primary-cyan);
    margin-top: 0;
}

.article-cta {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--primary-cyan);
}

.article-cta h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    padding: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.related-articles {
    list-style: none;
}

.related-articles li {
    margin-bottom: 1rem;
}

.related-articles a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-articles a:hover {
    color: var(--primary-cyan);
    padding-left: 10px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.share-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

/* ========== Course Pages ========== */
.course-content {
    padding: 80px 0;
}

.course-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.course-main {
    padding: 3rem;
}

.course-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid var(--glass-border);
}

.course-main h2 {
    color: var(--primary-cyan);
    margin: 2rem 0 1rem;
}

.course-main h3 {
    color: var(--primary-magenta);
    margin: 1.5rem 0 1rem;
}

.course-main p,
.course-main li {
    color: var(--text-secondary);
    line-height: 1.8;
}

.course-main ul {
    margin: 1rem 0 1.5rem 2rem;
}

.course-modules {
    margin: 2rem 0;
}

.module-item {
    background: rgba(0, 229, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-cyan);
}

.module-item h4 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.info-box {
    background: rgba(255, 0, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.info-box strong {
    color: var(--primary-magenta);
    display: block;
    margin-bottom: 0.5rem;
}

.instructor-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(0, 229, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.instructor-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-cyan);
    object-fit: cover;
}

.instructor-card h4 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.course-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ========== Legal Pages ========== */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.legal-text h2 {
    color: var(--primary-cyan);
    margin: 2rem 0 1rem;
}

.legal-text p,
.legal-text li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .article-content .container,
    .course-content .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .course-info-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-cyan);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-cyan);
    color: var(--dark-bg);
}