/* --- Global Modern Theme Styles --- */
body.modern-theme {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #161729; /* Dark background like Dasha */
    color: #FFFFFF; /* Light text */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px; /* Common container width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75em;
    color: #FFFFFF;
}

p {
    margin-bottom: 1em;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85); /* Slightly dimmer white for paragraphs */
}

a {
    color: #8785FF; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6F6CFA; /* Darker accent on hover */
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 20px;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

/* --- Header --- */
.site-header {
    background-color: #161729;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Subtle border */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
}

.logo a {
    display: inline-block;
}

.logo svg text {
    font-family: 'Montserrat', sans-serif;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.dropdown-menu-item:hover > a {
    color: #02CCCB; /* Dasha's teal for hover */
}

.dropdown-menu-item {
    position: relative;
    margin-left: 25px;
}

.dropdown-menu-item > a {
    margin-left: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #202138; /* Darker background for dropdown */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1001;
    list-style: none;
    margin-top: 10px; /* Space from parent */
}
.dropdown-menu-item:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    display: block;
    padding: 8px 15px;
    color: #FFFFFF;
    font-size: 14px;
    margin-left: 0;
}
.dropdown-content a:hover {
    background-color: #02CCCB;
    color: #161729; /* Dark text on teal hover */
    text-decoration: none;
}
.arrow-down {
    font-size: 0.7em;
    margin-left: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: #02CCCB; /* Dasha's teal */
    color: #FFFFFF;
    margin-left: 15px;
}
.btn-primary:hover {
    background-color: #02b0af; /* Darker teal */
    color: #FFFFFF;
    text-decoration: none;
}

.btn-secondary {
    background-color: #5855F4; /* Dasha's purple */
    color: #FFFFFF;
}
.btn-secondary:hover {
    background-color: #4a47d2; /* Darker purple */
    color: #FFFFFF;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #02CCCB; /* Teal text */
    border-color: #02CCCB; /* Teal border */
}
.btn-outline:hover {
    background-color: #02CCCB;
    color: #161729; /* Dark text on teal bg */
    text-decoration: none;
}

.btn-outline-light {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #161729; /* Dark text on white bg */
    text-decoration: none;
}

.btn-accent {
    background: linear-gradient(135deg, #8785FF 0%, #6F6CFA 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(135, 133, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-accent:hover::before {
    width: 300px;
    height: 300px;
}

.btn-accent:hover {
    box-shadow: 0 8px 30px rgba(135, 133, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
    color: #FFFFFF;
    text-decoration: none;
}

.btn-large {
    padding: 12px 28px;
    font-size: 16px;
    height: 48px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    height: 32px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
}
.search-bar {
    background-color: #202138; /* Darker element background */
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.search-bar form {
    display: flex;
    gap: 10px;
}
.search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #4a47d2; /* Purple border */
    background-color: #161729; /* Dark bg */
    color: #fff;
    font-size: 16px;
}
.search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(270deg, #161729, #1A1B2E, rgba(135, 133, 255, 0.25), rgba(2, 204, 203, 0.2), #161729);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 133, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 204, 203, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(2, 204, 203, 0.6) 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 12s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.hero-cta {
    margin-bottom: 30px;
}
.hero-cta .btn {
    margin: 0 10px;
}
.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-top: 35px;
}

.hero-highlights span {
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.15) 0%, rgba(135, 133, 255, 0.15) 100%);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(2, 204, 203, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.hero-highlights span::before {
    content: attr(data-icon);
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(2, 204, 203, 0.6));
}

.hero-highlights span:hover {
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.25) 0%, rgba(135, 133, 255, 0.25) 100%);
    border-color: rgba(2, 204, 203, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 204, 203, 0.3);
}

/* --- General Section Styling --- */
.section {
    padding: 70px 0;
}

/* Специальные фоны для конкретных секций */
.features-overview-section {
    background-color: #161729; /* Самый темный */
}

.stats-section {
    background: linear-gradient(135deg, #1C1D32 0%, #23243E 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 204, 203, 0.5), transparent);
}

.testimonials-section {
    background-color: #161729; /* Самый темный */
    position: relative;
}

.solutions-niches-section {
    background: linear-gradient(135deg, #1A1B2E 0%, #202138 100%);
}

.integrations-section {
    background-color: #161729; /* Самый темный */
    position: relative;
}

.integrations-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135, 133, 255, 0.5), transparent);
}

.pricing-preview-section {
    background: linear-gradient(135deg, #1E1F35 0%, #25263F 100%);
}

.faq-short-section {
    background-color: #161729; /* Самый темный */
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* --- Features Overview Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: linear-gradient(135deg, rgba(32, 33, 56, 0.9) 0%, rgba(26, 27, 46, 0.95) 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.08) 0%, rgba(135, 133, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(2, 204, 203, 0.2);
    border-color: rgba(2, 204, 203, 0.5);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #02CCCB; /* Teal accent for feature titles */
}
.feature-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}
.feature-icon {
    font-size: 64px;
    margin: 0 auto 20px;
    line-height: 1;
    display: block;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(2, 204, 203, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 25px rgba(2, 204, 203, 0.6));
}


/* --- Benefits Showcase Section --- */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.benefit-item:last-child {
    margin-bottom: 0;
}
.benefit-item-reverse {
    flex-direction: row-reverse;
}
.benefit-text-content {
    flex: 1;
}
.benefit-text-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFFFFF;
}
.benefit-image-container {
    flex: 1;
}
.benefit-image-container img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Subtle shadow */
}
.link-arrow {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #02CCCB; /* Teal link */
}
.link-arrow:hover {
    color: #8785FF; /* Purple on hover */
}


/* --- Solutions Section (Tabs) --- */
.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}
.tab-button {
    font-family: 'Montserrat', sans-serif;
    padding: 10px 20px;
    border: 2px solid #5855F4; /* Purple border for tabs */
    color: #5855F4;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}
.tab-button:hover {
    background-color: rgba(88, 85, 244, 0.2); /* Light purple bg on hover */
    color: #8785FF;
}
.tab-button.active {
    background-color: #5855F4; /* Solid purple for active tab */
    color: #FFFFFF;
    border-color: #5855F4;
}
.solution-tab-content {
    display: none;
    padding: 30px;
    background-color: #202138; /* Dark bg for tab content */
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}
.solution-tab-content.active {
    display: block;
}
.solution-tab-content h3 {
    font-size: 24px;
    color: #02CCCB; /* Teal title in tab content */
    margin-bottom: 15px;
}
.solution-tab-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.solution-image {
    margin-top: 20px;
    border-radius: 8px;
}

/* --- Integrations Section --- */
.integration-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.integration-logos-container img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.integration-logos-container img:hover {
    opacity: 1;
}
.integration-logos-container span {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}
.integrations-section .btn {
    margin: 0 auto;
    display: table;
}

/* --- CTA Banner Section --- */
.cta-banner-section {
    background: linear-gradient(135deg, #1E1F35 0%, #2A2B4A 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(135, 133, 255, 0.3);
    border-bottom: 2px solid rgba(135, 133, 255, 0.3);
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 133, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner-section .section-title {
    color: #FFFFFF;
}
.cta-banner-section .section-subtitle {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.testimonial-card {
    background-color: #202138;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 60px;
    color: rgba(2, 204, 203, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(2, 204, 203, 0.2);
}
.testimonial-card p {
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.8);
}
.testimonial-author-info {
    display: flex;
    align-items: center;
}
.testimonial-author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}
.testimonial-author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}
.testimonial-author-info span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.testimonials-section .btn {
    margin: 0 auto;
    display: table;
}

/* --- Pricing Preview Section --- */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.price-card {
    background-color: #202138;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}
.price-card h3 {
    font-size: 24px;
    color: #02CCCB; /* Teal for pricing title */
    margin-bottom: 10px;
}
.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.price-period {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    display: block;
}
.price-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
    flex-grow: 1;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1; /* Allows button to stick to bottom */
}
.price-card ul li {
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.8);
}
.price-card ul li::before {
    content: '✓';
    color: #02CCCB; /* Teal checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}
.price-card .btn {
    width: 100%;
    margin-top: auto; /* Stick button to bottom */
}
.price-card-popular {
    border: 2px solid #8785FF;
    position: relative;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(135, 133, 255, 0.05) 0%, rgba(32, 33, 56, 1) 100%);
    box-shadow: 0 10px 40px rgba(135, 133, 255, 0.2);
}

.price-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(135, 133, 255, 0.3);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8785FF; /* Purple badge */
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.pricing-note a {
    color: #02CCCB; /* Teal link */
    font-weight: 600;
}

/* --- FAQ Section --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.faq-item {
    background-color: #202138; /* Dark item background */
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.faq-question {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    outline: none;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #8785FF; /* Purple plus/minus */
}
.faq-question.open::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-answer p {
    padding: 0px 25px 0px 25px;
    margin-bottom: 0;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}
.faq-short-section .btn {
    margin: 0 auto;
    display: table;
}

/* --- Footer --- */
.site-footer {
    background-color: #10111E; /* Even darker footer background */
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-column ul li a:hover {
    color: #02CCCB; /* Teal hover for footer links */
    text-decoration: underline;
}
.footer-about p {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}
.footer-social-links {
    display: flex;
    gap: 15px;
}
.footer-social-links img {
    width: 24px; /* Adjust as needed */
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.footer-social-links a:hover img {
    opacity: 1;
}
.footer-bottom-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-legal-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.5);
}
.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* --- Cookies Consent --- */
.cookies-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #10111E; /* Dark bg for cookie banner */
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookies-consent-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookies-consent-banner p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.cookies-consent-banner p a {
    color: #02CCCB; /* Teal link in cookie banner */
    font-weight: 600;
}


/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .section-title {
        font-size: 30px;
    }
    .main-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 71px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #161729;
        padding: 10px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
        max-height: calc(100vh - 71px);
        overflow-y: auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    .main-nav.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .main-nav a,
    .dropdown-menu-item {
        margin: 10px 20px;
        width: calc(100% - 40px);
        text-align: left;
    }
    .dropdown-content {
        position: static;
        border: none;
        background-color: transparent;
        box-shadow: none;
        padding-left: 15px;
        min-width: auto;
        margin-top: 5px;
    }
    .header-actions .btn {
        font-size: 13px;
        padding: 8px 15px;
        height: 36px;
    }
    .header-actions .btn-primary { margin-left: 10px; }

    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-toggle.active {
      color: #02CCCB; /* Teal when active */
    }

    .benefit-item,
    .benefit-item-reverse {
        flex-direction: column;
        text-align: center;
    }
    .benefit-image-container {
        margin-top: 20px;
        order: -1; /* Image first on mobile */
    }
    .benefit-item-reverse .benefit-image-container {
        order: -1;
    }
    .benefit-text-content {
        text-align: left; /* Keep text left-aligned */
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
     .hero-cta .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
    .section-title {
        font-size: 26px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .features-grid,
    .testimonials-grid,
    .pricing-cards-container {
        grid-template-columns: 1fr;
    }
    .price-card-popular {
        transform: scale(1); /* No zoom on smaller screens */
    }
     .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cookies-consent-banner .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-outline { /* Hide search button */
        display: none;
    }
     .header-actions .btn-primary {
        margin-left: 0;
    }
    .hero-highlights {
        font-size: 13px;
        gap: 10px;
    }
     .hero-highlights span {
        padding: 4px 8px;
    }
}

/* ========== FOOTER - 3 КОЛОНКИ НА ДЕСКТОПЕ ========== */
.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-column {
    min-width: 0;
}

.site-footer .footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.site-footer .footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.site-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-column ul li {
    margin-bottom: 10px;
}

.site-footer .footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.site-footer .footer-column ul li a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.site-footer .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.site-footer .footer-social a {
    font-size: 22px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.site-footer .footer-social a:hover {
    transform: scale(1.15);
    text-decoration: none;
}

.site-footer .footer-bottom {
    padding: 20px 0;
}

.site-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-footer .footer-bottom-content p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer .footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer .footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-legal a:hover {
    color: #FFFFFF;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs-list li::after {
    content: '→';
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs-list li:last-child::after {
    content: '';
}

.breadcrumbs-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-list a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.breadcrumbs-list li:last-child {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== SOLUTIONS INDEX PAGE ========== */
.integrations-index,
.integration-category-page {
    min-height: 50vh;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.integration-card {
    background-color: #202138;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-8px);
    border-color: #02CCCB;
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.08) 0%, rgba(32, 33, 56, 1) 100%);
    box-shadow: 0 15px 30px rgba(2, 204, 203, 0.12);
}

.integration-logo {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1;
}

.integration-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.integration-card h3 a {
    color: #FFFFFF;
    text-decoration: none;
}

.integration-card h3 a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.integration-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.integration-category {
    margin-bottom: 60px;
}

.integration-category h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #02CCCB;
}

@media (max-width: 767px) {
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========== STATS SECTION ========== */
.stats-section {
    background-color: #1A1B2E;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #02CCCB 0%, #8785FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== NICHES GRID ========== */
.niches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.niche-card {
    background-color: #202138;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.niche-card:hover {
    transform: translateY(-8px);
    border-color: #02CCCB;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.08) 0%, rgba(32, 33, 56, 1) 100%);
    box-shadow: 0 15px 30px rgba(2, 204, 203, 0.15);
}

.niche-card:hover .niche-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.niche-icon {
    font-size: 52px;
    margin-bottom: 15px;
    line-height: 1;
}

.niche-card h3 {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.niche-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========== SEARCH RESULTS PAGE ========== */
.search-results-page {
    min-height: 70vh;
}

.search-form-main {
    margin: 40px 0 50px;
}

.search-input-group {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-large {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: #202138;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-input-large:focus {
    outline: none;
    border-color: #02CCCB;
    box-shadow: 0 0 0 3px rgba(2, 204, 203, 0.1);
}

.search-input-large::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-results-list {
    margin-top: 40px;
}

.results-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-item {
    background-color: #202138;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    border-color: rgba(2, 204, 203, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search-result-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.search-result-item h3 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-item h3 a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.result-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.result-url {
    font-size: 13px;
    color: #8785FF;
    text-decoration: none;
}

.result-url:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.no-results p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.no-results ul {
    text-align: left;
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
}

.no-results ul li {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input-large {
        font-size: 16px;
    }
    
    .search-result-item {
        padding: 20px;
    }
    
    .search-result-item h3 {
        font-size: 18px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ========== PRICING PAGE ========== */
.pricing-page {
    min-height: 70vh;
}

.pricing-content {
    padding: 50px 0;
}

.pricing-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-description h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #02CCCB;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pricing-card {
    background-color: #202138;
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border: 2px solid #8785FF;
    background: linear-gradient(135deg, rgba(135, 133, 255, 0.08) 0%, rgba(32, 33, 56, 1) 100%);
    box-shadow: 0 15px 50px rgba(135, 133, 255, 0.25);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(135, 133, 255, 0.35);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8785FF 0%, #6F6CFA 100%);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #02CCCB;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-card .price span {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card .features-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-faq {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 50px;
    background-color: #202138;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faq h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #02CCCB;
}

.pricing-faq h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #8785FF;
}

.pricing-faq p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-faq ul {
    list-style: none;
    padding-left: 0;
}

.pricing-faq ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-faq ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #02CCCB;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 991px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card .price {
        font-size: 36px;
    }
    
    .pricing-faq {
        padding: 30px 20px;
    }
    
    .pricing-faq h2 {
        font-size: 26px;
    }
}

/* ========== SOLUTIONS INDEX PAGE ========== */
.solutions-index {
    min-height: 70vh;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.solution-card {
    background: linear-gradient(135deg, rgba(32, 33, 56, 0.9) 0%, rgba(26, 27, 46, 0.95) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.08) 0%, rgba(135, 133, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card > * {
    position: relative;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #02CCCB;
    box-shadow: 0 15px 40px rgba(2, 204, 203, 0.2);
}

.solution-card .solution-icon {
    font-size: 72px;
    margin-bottom: 25px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(3deg);
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card h3 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-card h3 a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
}

.solution-card .btn {
    margin-top: auto;
}

/* ========== SOLUTION DETAIL PAGE ========== */
.solution-page {
    min-height: 70vh;
}

.solution-header {
    background: linear-gradient(135deg, #1A1B2E 0%, #202138 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 204, 203, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.solution-icon-large {
    font-size: 100px;
    margin-bottom: 30px;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.solution-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.solution-hero {
    font-size: 24px;
    color: #02CCCB;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.solution-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-content {
    padding: 60px 0;
}

.solution-description {
    max-width: 900px;
    margin: 0 auto 60px;
    background-color: #202138;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-description h2 {
    font-size: 32px;
    color: #02CCCB;
    margin-bottom: 25px;
}

.solution-description h3 {
    font-size: 24px;
    color: #8785FF;
    margin-top: 35px;
    margin-bottom: 15px;
}

.solution-description p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.solution-description ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.solution-description ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #02CCCB;
    font-weight: bold;
    font-size: 20px;
}

.solution-features,
.solution-cases {
    max-width: 900px;
    margin: 0 auto 60px;
    background-color: #202138;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-features h2,
.solution-cases h2 {
    font-size: 32px;
    color: #02CCCB;
    margin-bottom: 30px;
    text-align: center;
}

.solution-features h3,
.solution-cases h3 {
    font-size: 22px;
    color: #8785FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.solution-features p,
.solution-cases p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-features ul,
.solution-cases ul {
    list-style: none;
    padding-left: 0;
}

.solution-features ul li,
.solution-cases ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.solution-features ul li::before,
.solution-cases ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #02CCCB;
    font-weight: bold;
}

.solution-cta {
    text-align: center;
    margin: 80px 0 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .solution-header h1 {
        font-size: 36px;
    }
    
    .solution-hero {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .solution-header {
        padding: 60px 0 40px;
    }
    
    .solution-header h1 {
        font-size: 28px;
    }
    
    .solution-hero {
        font-size: 18px;
    }
    
    .solution-intro {
        font-size: 16px;
    }
    
    .solution-description,
    .solution-features,
    .solution-cases {
        padding: 30px 20px;
    }
    
    .solution-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========== FEATURES PAGE ========== */
.features-index {
    min-height: 70vh;
}

.features-grid-section {
    padding: 50px 0;
}

/* ========== ABOUT PAGE PREMIUM ========== */
.about-page-premium {
    min-height: 70vh;
}

.page-header-premium {
    background: linear-gradient(135deg, #1A1B2E 0%, #2A2B4A 50%, #202138 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 204, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 133, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.page-header-premium h1 {
    font-size: 52px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, #02CCCB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-premium .page-intro {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-content-premium {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    color: #02CCCB;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid #02CCCB;
    background: linear-gradient(90deg, rgba(2, 204, 203, 0.08) 0%, transparent 100%);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 26px;
    color: #8785FF;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-wrapper h3::before {
    content: '●';
    color: #8785FF;
    font-size: 14px;
}

.content-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}

.content-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
    display: grid;
    gap: 15px;
}

.content-wrapper ul li {
    padding: 18px 25px 18px 60px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    background-color: rgba(32, 33, 56, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.content-wrapper ul li:hover {
    background-color: rgba(32, 33, 56, 0.8);
    border-color: rgba(2, 204, 203, 0.3);
    transform: translateX(5px);
}

.content-wrapper ul li::before {
    content: '✓';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #02CCCB;
    font-weight: bold;
    font-size: 22px;
}

.content-wrapper strong {
    color: #02CCCB;
    font-weight: 700;
}

.content-wrapper ol {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.content-wrapper ol li {
    counter-increment: custom-counter;
    padding: 18px 25px 18px 60px;
    position: relative;
    background-color: rgba(32, 33, 56, 0.5);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-wrapper ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8785FF 0%, #6F6CFA 100%);
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 767px) {
    .page-header-premium h1 {
        font-size: 36px;
    }
    
    .page-header-premium .page-intro {
        font-size: 18px;
    }
    
    .content-wrapper h2 {
        font-size: 28px;
    }
    
    .content-wrapper h3 {
        font-size: 22px;
    }
}

/* ========== STANDARD PAGE (OLD) ========== */
.about-page,
.standard-page {
    min-height: 70vh;
}

.standard-page .page-content {
    padding: 60px 0;
}

.standard-page .page-content .container {
    max-width: 900px;
}

.standard-page .page-content h2 {
    font-size: 32px;
    color: #02CCCB;
    margin-top: 40px;
    margin-bottom: 25px;
}

.standard-page .page-content h3 {
    font-size: 24px;
    color: #8785FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.standard-page .page-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.standard-page .page-content ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.standard-page .page-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.standard-page .page-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #02CCCB;
    font-weight: bold;
    font-size: 18px;
}

.standard-page .page-content ul li:last-child {
    border-bottom: none;
}

.standard-page .page-content strong {
    color: #02CCCB;
}

.about-hero {
    background: linear-gradient(135deg, #1A1B2E 0%, #202138 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero .page-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
    background-color: #202138;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section h2 {
    font-size: 32px;
    color: #02CCCB;
    margin-bottom: 25px;
}

.about-section h3 {
    font-size: 24px;
    color: #8785FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.about-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #02CCCB;
    font-weight: bold;
    font-size: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #202138;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.team-member .role {
    font-size: 14px;
    color: #8785FF;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== KNOWLEDGE BASE ========== */
.knowledge-base-index {
    min-height: 70vh;
}

.kb-section {
    padding: 60px 0;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 0;
}

.kb-card {
    background-color: #202138;
    padding: 40px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.kb-card::before {
    content: '📚';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.05;
}

.kb-card:hover {
    transform: translateY(-8px);
    border-color: #02CCCB;
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.08) 0%, rgba(32, 33, 56, 1) 100%);
    box-shadow: 0 20px 40px rgba(2, 204, 203, 0.15);
}

.kb-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #02CCCB;
    position: relative;
    z-index: 1;
}

.kb-card h3 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kb-card h3 a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.kb-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.kb-card .btn {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.kb-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.kb-category-card {
    background-color: #202138;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.kb-category-card:hover {
    transform: translateY(-8px);
    border-color: #8785FF;
    background: linear-gradient(135deg, rgba(2, 204, 203, 0.08) 0%, rgba(32, 33, 56, 1) 100%);
    box-shadow: 0 15px 30px rgba(2, 204, 203, 0.15);
}

.kb-category-icon {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1;
}

.kb-category-card h3 {
    font-size: 22px;
    color: #02CCCB;
    margin-bottom: 15px;
}

.kb-category-card h3 a {
    color: #FFFFFF;
    text-decoration: none;
}

.kb-category-card h3 a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.kb-category-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.kb-articles-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.kb-articles-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.kb-articles-list li:last-child {
    border-bottom: none;
}

.kb-articles-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kb-articles-list a:hover {
    color: #02CCCB;
    text-decoration: none;
}

.kb-articles-list a::before {
    content: '→';
    color: #8785FF;
}

/* Knowledge Base Article */
.kb-article {
    min-height: 70vh;
}

.kb-article-content {
    max-width: 900px;
    margin: 50px auto;
    background-color: #202138;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kb-article-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #02CCCB;
}

.kb-article-content h2 {
    font-size: 28px;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 20px;
}

.kb-article-content h3 {
    font-size: 22px;
    color: #8785FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.kb-article-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.kb-article-content ul,
.kb-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.kb-article-content li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.kb-article-content code {
    background-color: #161729;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #02CCCB;
}

.kb-article-content pre {
    background-color: #161729;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.kb-article-content pre code {
    background: none;
    padding: 0;
}

@media (max-width: 767px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-section,
    .kb-article-content {
        padding: 30px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-categories {
        grid-template-columns: 1fr;
    }
    
    /* Fix stats grid for mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 32px;
        white-space: nowrap;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* ========== BLOG STYLES ========== */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin: 0;
}

.blog-card {
    background-color: #202138;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: #8785FF;
    box-shadow: 0 20px 40px rgba(135, 133, 255, 0.15);
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category,
.blog-date,
.post-category,
.post-date,
.post-author {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: rgba(135, 133, 255, 0.15);
    color: #8785FF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category,
.post-category {
    background-color: rgba(2, 204, 203, 0.15);
    color: #02CCCB;
}

.blog-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    min-height: 60px;
}

.blog-card h2 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #8785FF;
    text-decoration: none;
}

.blog-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more {
    color: #8785FF;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #02CCCB;
    transform: translateX(5px);
    text-decoration: none;
}

/* Blog Post Page */
.post-header-premium .post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.post-header-premium h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post-header-premium .post-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 20px auto 0;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        padding: 25px;
    }
    
    .blog-card h2 {
        min-height: auto;
    }
}

/* ========== PREMIUM PAGE STYLES (GENERAL) ========== */
