:root {
--primary-color: #00d4ff;
--secondary-color: #0066ff;
--dark-bg: #0a0e27;
--darker-bg: #050814;
--text-light: #e0e6ed;
--text-muted: #8b93a7;
--accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
--card-bg: #151932;
--hover-transform: translateY(-5px);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--dark-bg);
color: var(--text-light);
line-height: 1.7;
overflow-x: hidden;
}

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

.site-header {
background: rgba(10, 14, 39, 0.95);
backdrop-filter: blur(10px);
padding: 18px 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid rgba(0, 212, 255, 0.2);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-navigation {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid var(--primary-color);
}

.logo-text {
font-size: 24px;
font-weight: 700;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-menu {
display: flex;
list-style: none;
gap: 35px;
}

.nav-menu a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
padding: 10px 15px;
border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active-link {
background: var(--accent-gradient);
color: white;
transform: translateY(-2px);
}

.hero-banner {
background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
padding: 80px 0;
text-align: center;
margin-bottom: 60px;
border-bottom: 3px solid rgba(0, 212, 255, 0.3);
}

.hero-content h1 {
font-size: 52px;
margin-bottom: 20px;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 800;
}

.hero-subtitle {
font-size: 22px;
color: var(--text-muted);
}

.what-you-learn {
padding: 80px 0;
background: var(--darker-bg);
}

.what-you-learn h2 {
text-align: center;
font-size: 42px;
margin-bottom: 60px;
color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}

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

.learn-card {
background: var(--card-bg);
padding: 35px;
border-radius: 15px;
text-align: center;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.learn-card:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.learn-icon {
font-size: 60px;
color: var(--primary-color);
margin-bottom: 25px;
}

.learn-card h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary-color);
}

.ai-stats-section {
padding: 80px 0;
background: var(--dark-bg);
}

.ai-stats-section h2 {
text-align: center;
font-size: 38px;
margin-bottom: 50px;
color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}

.chart-container {
max-width: 900px;
margin: 0 auto 50px;
background: var(--card-bg);
padding: 30px;
border-radius: 15px;
border: 2px solid rgba(0, 212, 255, 0.2);
}

#aiAdoptionChart {
width: 100%;
height: 400px;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

.stat-item {
background: var(--card-bg);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 2px solid rgba(0, 212, 255, 0.2);
transition: all 0.3s ease;
}

.stat-item:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
}

.stat-number {
font-size: 40px;
font-weight: 800;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 10px;
}

.stat-label {
color: var(--text-muted);
font-size: 16px;
}

.intro-section {
padding: 80px 0;
}

.intro-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.intro-text h2 {
font-size: 38px;
margin-bottom: 25px;
color: var(--primary-color);
}

.intro-text p {
margin-bottom: 20px;
color: var(--text-muted);
font-size: 17px;
}

.intro-features {
margin-top: 30px;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 15px;
font-size: 16px;
}

.feature-item i {
color: var(--primary-color);
font-size: 20px;
}

.intro-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
border: 3px solid rgba(0, 212, 255, 0.3);
}

.featured-topics {
padding: 80px 0;
background: var(--darker-bg);
}

.featured-topics h2 {
text-align: center;
font-size: 42px;
margin-bottom: 60px;
color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}

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

.topic-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.topic-card:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.topic-card img {
width: 100%;
height: 220px;
object-fit: cover;
}

.topic-content {
padding: 30px;
}

.topic-content h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary-color);
}

.page-hero {
background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
padding: 60px 0;
text-align: center;
margin-bottom: 60px;
border-bottom: 3px solid rgba(0, 212, 255, 0.3);
}

.page-hero h1 {
font-size: 48px;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 15px;
display: inline-flex;
align-items: center;
gap: 15px;
}

.page-hero p {
font-size: 20px;
color: var(--text-muted);
}

.blog-posts-section {
padding: 80px 0;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
gap: 40px;
}

.post-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.post-card:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.post-image {
position: relative;
overflow: hidden;
}

.post-image img {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.4s ease;
}

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

.post-category {
position: absolute;
top: 15px;
left: 15px;
background: var(--accent-gradient);
color: white;
padding: 8px 18px;
border-radius: 25px;
font-size: 13px;
font-weight: 600;
}

.post-content {
padding: 30px;
}

.post-content h2 {
font-size: 24px;
margin-bottom: 15px;
}

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

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

.post-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 14px;
color: var(--text-muted);
flex-wrap: wrap;
}

.post-meta span {
display: flex;
align-items: center;
gap: 6px;
}

.post-content p {
color: var(--text-muted);
margin-bottom: 20px;
line-height: 1.7;
}

.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.read-more:hover {
gap: 12px;
}

.about-intro {
padding: 80px 0;
}

.about-content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.about-text-section h2 {
font-size: 38px;
margin-bottom: 25px;
color: var(--primary-color);
}

.about-text-section p {
margin-bottom: 20px;
color: var(--text-muted);
font-size: 17px;
line-height: 1.8;
}

.mission-values {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-top: 40px;
}

.value-item {
background: var(--card-bg);
padding: 25px;
border-radius: 12px;
border: 2px solid rgba(0, 212, 255, 0.2);
transition: all 0.3s ease;
}

.value-item:hover {
border-color: var(--primary-color);
transform: var(--hover-transform);
}

.value-item i {
font-size: 40px;
color: var(--primary-color);
margin-bottom: 15px;
}

.value-item h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--primary-color);
}

.about-image-section img {
width: 100%;
border-radius: 15px;
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
border: 3px solid rgba(0, 212, 255, 0.3);
}

.team-section {
padding: 80px 0;
background: var(--darker-bg);
}

.team-section h2 {
text-align: center;
font-size: 42px;
margin-bottom: 60px;
color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}

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

.team-member-card {
background: var(--card-bg);
border-radius: 15px;
padding: 35px;
text-align: center;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.team-member-card:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.member-photo img {
width: 100%;
max-width: 250px;
height: 250px;
border-radius: 50%;
margin-bottom: 25px;
border: 4px solid var(--primary-color);
object-fit: cover;
}

.member-info h3 {
font-size: 24px;
margin-bottom: 10px;
color: var(--primary-color);
}

.member-role {
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 15px;
font-size: 16px;
}

.member-bio {
color: var(--text-muted);
line-height: 1.7;
font-size: 15px;
}

.company-info {
padding: 80px 0;
}

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

.info-card {
background: var(--card-bg);
padding: 35px;
border-radius: 15px;
text-align: center;
border: 2px solid rgba(0, 212, 255, 0.2);
transition: all 0.3s ease;
}

.info-card:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
}

.info-card i {
font-size: 50px;
color: var(--primary-color);
margin-bottom: 20px;
}

.info-card h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--primary-color);
}

.info-card p {
color: var(--text-muted);
}

.contact-section {
padding: 80px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info-side h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--primary-color);
}

.contact-info-side p {
color: var(--text-muted);
margin-bottom: 30px;
line-height: 1.8;
}

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

.contact-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.contact-icon {
background: var(--accent-gradient);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
color: white;
font-size: 22px;
}

.contact-text h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--primary-color);
}

.contact-text p {
color: var(--text-muted);
margin: 0;
}

.contact-form-side h2 {
font-size: 36px;
margin-bottom: 30px;
color: var(--primary-color);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 10px;
}

.form-group label {
color: var(--text-light);
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
background: var(--card-bg);
border: 2px solid rgba(0, 212, 255, 0.2);
color: var(--text-light);
padding: 14px;
border-radius: 8px;
font-size: 15px;
transition: all 0.3s ease;
font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.submit-btn {
background: var(--accent-gradient);
color: white;
border: none;
padding: 16px 35px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
justify-content: center;
align-items: center;
z-index: 10000;
backdrop-filter: blur(5px);
}

.modal-content {
background: var(--card-bg);
padding: 50px;
border-radius: 20px;
text-align: center;
max-width: 500px;
border: 2px solid var(--primary-color);
box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.modal-icon {
font-size: 80px;
color: #00ff88;
margin-bottom: 25px;
}

.modal-content h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--primary-color);
}

.modal-content p {
color: var(--text-muted);
margin-bottom: 30px;
font-size: 17px;
}

.modal-btn {
background: var(--accent-gradient);
color: white;
border: none;
padding: 14px 40px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.post-article {
padding: 60px 0;
}

.article-header {
text-align: center;
margin-bottom: 40px;
}

.article-category {
background: var(--accent-gradient);
color: white;
display: inline-block;
padding: 8px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
margin-bottom: 20px;
}

.article-header h1 {
font-size: 46px;
color: var(--primary-color);
margin-bottom: 25px;
line-height: 1.3;
}

.article-meta {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
color: var(--text-muted);
font-size: 15px;
}

.article-meta span {
display: flex;
align-items: center;
gap: 8px;
}

.article-featured-image {
margin-bottom: 50px;
border-radius: 15px;
overflow: hidden;
border: 3px solid rgba(0, 212, 255, 0.3);
}

.article-featured-image img {
width: 100%;
height: auto;
display: block;
}

.article-content {
max-width: 850px;
margin: 0 auto;
}

.lead-paragraph {
font-size: 20px;
line-height: 1.9;
color: var(--text-light);
margin-bottom: 35px;
font-weight: 500;
border-left: 4px solid var(--primary-color);
padding-left: 25px;
background: rgba(0, 212, 255, 0.05);
padding: 25px;
border-radius: 8px;
}

.article-content h2 {
font-size: 32px;
color: var(--primary-color);
margin-top: 50px;
margin-bottom: 25px;
}

.article-content p {
font-size: 17px;
line-height: 1.9;
margin-bottom: 25px;
color: var(--text-muted);
}

.article-footer {
max-width: 850px;
margin: 50px auto 0;
padding-top: 35px;
border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.article-tags {
display: flex;
gap: 15px;
flex-wrap: wrap;
align-items: center;
}

.article-tags i {
color: var(--primary-color);
font-size: 20px;
}

.article-tags a {
background: var(--card-bg);
color: var(--text-light);
padding: 8px 18px;
border-radius: 20px;
text-decoration: none;
font-size: 14px;
border: 2px solid rgba(0, 212, 255, 0.2);
transition: all 0.3s ease;
}

.article-tags a:hover {
background: var(--accent-gradient);
border-color: var(--primary-color);
color: white;
}

.related-posts {
max-width: 1100px;
margin: 80px auto 0;
}

.related-posts h3 {
font-size: 32px;
margin-bottom: 40px;
color: var(--primary-color);
text-align: center;
}

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

.related-card {
background: var(--card-bg);
border-radius: 12px;
overflow: hidden;
text-decoration: none;
display: block;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.related-card:hover {
transform: var(--hover-transform);
border-color: var(--primary-color);
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.related-card img {
width: 100%;
height: 180px;
object-fit: cover;
}

.related-card h4 {
padding: 20px;
color: var(--text-light);
font-size: 18px;
}

.site-footer {
background: var(--darker-bg);
padding: 60px 0 30px;
margin-top: 80px;
border-top: 3px solid rgba(0, 212, 255, 0.3);
}

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

.footer-column h4 {
color: var(--primary-color);
font-size: 20px;
margin-bottom: 20px;
}

.footer-column p {
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 15px;
}

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

.footer-column ul li {
margin-bottom: 12px;
}

.footer-column ul li a {
color: var(--text-muted);
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}

.footer-column ul li a:hover {
color: var(--primary-color);
transform: translateX(5px);
}

.company-registration {
font-size: 14px;
color: var(--text-muted);
margin-top: 10px;
font-style: italic;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(0, 212, 255, 0.2);
color: var(--text-muted);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--card-bg);
padding: 25px;
z-index: 9999;
border-top: 3px solid var(--primary-color);
box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
transform: translateY(100%);
transition: transform 0.4s ease;
}

.cookie-banner.show {
transform: translateY(0);
}

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

.cookie-text h3 {
color: var(--primary-color);
margin-bottom: 10px;
font-size: 20px;
display: flex;
align-items: center;
gap: 10px;
}

.cookie-text p {
color: var(--text-muted);
margin-bottom: 10px;
line-height: 1.6;
}

.cookie-link {
color: var(--primary-color);
text-decoration: none;
font-size: 14px;
}

.cookie-link:hover {
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 25px;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

.accept-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

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

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

.decline-btn {
background: transparent;
color: var(--text-muted);
border: 2px solid var(--text-muted);
}

.decline-btn:hover {
background: var(--text-muted);
color: var(--dark-bg);
}

@media (max-width: 968px) {
.nav-menu {
flex-direction: column;
gap: 15px;
}

.hero-content h1 {
font-size: 38px;
}

.intro-content,
.about-content-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.posts-grid,
.topics-grid {
grid-template-columns: 1fr;
}

.cookie-content {
flex-direction: column;
align-items: flex-start;
}
}

@media (max-width: 600px) {
.hero-content h1 {
font-size: 32px;
}

.article-header h1 {
font-size: 32px;
}

.page-hero h1 {
font-size: 36px;
}

.learn-grid,
.stats-grid,
.team-grid,
.info-grid {
grid-template-columns: 1fr;
}

.mission-values {
grid-template-columns: 1fr;
}
}