:root {
    --dark: #212121;
    --dark-lighter: #333333;
    --dark-lightest: #444444;
    --electric-blue: #03A9F4;
    --cyan: #8BC34A;
    --white: #FFFFFF;
    --gray-100: #F7F7F7;
    --gray-200: #E5E5E5;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gradient-primary: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyan) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 12px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 27px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.logo-img {
    max-height: 42px;
    width: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 53px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 21px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
}

.text-white {
    color: var(--white) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cyan {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 38px rgba(6, 182, 212, 0.3);
    color: var(--white);
}

.btn-outline-cyan {
    background: transparent;
    color: var(--cyan);
    border-color: var(--cyan);
}

.btn-outline-cyan:hover {
    background: var(--cyan);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

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

.btn-dark:hover {
    background: var(--dark-lighter);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-lg {
    padding: 18px 34px;
    font-size: 19px;
}

.btn-sm {
    padding: 7px 22px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.navbar {
    padding: 18px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(7px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 700;
    font-size: 21px;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 10px 16px;
    font-size: 18px;
}

.navbar-nav .nav-link:hover {
    color: var(--cyan);
}

.dropdown-menu-dark {
    background: var(--dark-lighter);
    border: 1px solid var(--dark-lightest);
    border-radius: 10px;
    padding: 8px;
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 11px 14px;
}

.dropdown-menu-dark .dropdown-item:hover {
    background: var(--dark-lightest);
    color: var(--cyan);
}

.nav-cta {
    margin-left: 20px;
}

.hero-split {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    min-height: 100vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 120px 57px 62px 82px;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 18px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 48px;
    margin-bottom: 31px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 500;
}

.badge-icon {
    width: 25px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan);
    color: var(--dark);
    border-radius: 50%;
    font-size: 9px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 27px;
    line-height: 1.1;
}

.hero-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 43px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-trust {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 17px;
}

.trust-logos {
    display: flex;
    gap: 29px;
    align-items: center;
}

.trust-logo {
    height: 33px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px 61px 63px;
    background: linear-gradient(135deg, var(--dark-lighter) 0%, var(--dark) 100%);
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.code-window {
    background: var(--dark);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-lightest);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 17px 17px;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--dark-lightest);
}

.code-dot {
    width: 12px;
    height: 13px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-title {
    margin-left: 14px;
    font-size: 14px;
    color: var(--gray-400);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.code-body {
    padding: 24px;
}

.code-content {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: var(--gray-300);
}

.code-comment {
    color: var(--gray-400);
}

.code-prompt {
    color: var(--cyan);
}

.code-success {
    color: #10b981;
}

.code-info {
    color: var(--electric-blue);
}

.hero-stats-float {
    position: absolute;
    right: -41px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.stat-card {
    background: var(--white);
    padding: 17px 27px;
    border-radius: 9px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.stat-card .stat-number {
    display: block;
    font-size: 31px;
    font-weight: 800;
    color: var(--dark);
}

.stat-card .stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
}

.stat-card-1 {
    animation: float 3s ease-in-out infinite;
}

.stat-card-2 {
    animation: float 3s ease-in-out infinite;
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.stats-split {
    background: var(--dark);
    padding: 62px 0;
}

.stats-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-left,
.stats-right {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 57px;
    padding: 38px;
}

.stats-left {
    background: var(--dark-lighter);
}

.stats-right {
    background: var(--dark);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

.stat-icon {
    width: 61px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 11px;
    font-size: 27px;
    color: var(--white);
}

.stat-content .stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
}

.stat-content .stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
}

.features-split {
    background: var(--white);
}

.features-intro {
    padding-right: 37px;
}

.features-grid {
    display: grid;
    gap: 21px;
}

.feature-card {
    display: flex;
    gap: 17px;
    padding: 27px;
    border-radius: 17px;
    transition: var(--transition);
}

.feature-card-left {
    background: var(--dark);
    color: var(--white);
}

.feature-card-right {
    background: var(--gray-100);
    color: var(--dark);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 51px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 9px;
    font-size: 23px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-card-left .feature-icon {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card-left .feature-title {
    color: var(--white);
}

.feature-desc {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.services-split {
    background: var(--gray-100);
}

.services-duo {
    margin-top: 47px;
}

.service-card {
    padding: 52px 40px;
    height: 100%;
}

.service-card-dark {
    background: var(--dark);
    color: var(--white);
}

.service-card-light {
    background: var(--white);
    color: var(--dark);
}

.service-icon {
    width: 72px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 13px;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 21px;
}

.service-card-dark .service-icon {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.service-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card-dark .service-title {
    color: var(--white);
}

.service-desc {
    margin-bottom: 22px;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-features li i {
    color: var(--cyan);
}

.pricing-split {
    background: var(--dark);
    padding: 97px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.toggle-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 62px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-lightest);
    border-radius: 31px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 26px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    pointer-events: none;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(29px);
}

.save-badge {
    background: var(--cyan);
    color: var(--dark);
    padding: 4px 9px;
    border-radius: 52px;
    font-size: 10px;
    font-weight: 600;
}

.pricing-cards {
    margin-top: 48px;
}

.pricing-card {
    padding: 38px;
    border-radius: 22px;
    height: 100%;
    position: relative;
}

.pricing-card-left {
    background: var(--dark-lighter);
    color: var(--white);
}

.pricing-card-right {
    background: var(--dark-lighter);
    color: var(--white);
}

.pricing-card-featured {
    background: var(--white);
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 19px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 31px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 29px;
}

.pricing-card-featured .pricing-header {
    border-color: var(--gray-200);
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card-featured .plan-name {
    color: var(--dark);
}

.plan-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 21px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
}

.plan-price .amount {
    font-size: 49px;
    font-weight: 800;
}

.plan-price .period {
    font-size: 16px;
    opacity: 0.7;
}

.custom-price {
    font-size: 22px;
    font-weight: 700;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    font-size: 13px;
}

.plan-features li i {
    color: var(--cyan);
}

.pricing-footer {
    margin-top: 28px;
}

.testimonials-split {
    background: var(--white);
    padding: 0;
}

.testimonials-container {
    display: flex;
    min-height: 600px;
}

.testimonials-left {
    flex: 1;
    background: var(--dark);
    padding: 81px 59px;
    display: flex;
    align-items: center;
}

.testimonials-intro {
    max-width: 400px;
}

.testimonials-stats {
    display: flex;
    gap: 41px;
}

.tstat {
    text-align: center;
}

.tstat-number {
    display: block;
    font-size: 45px;
    font-weight: 800;
    color: var(--cyan);
}

.tstat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-right {
    flex: 1;
    background: var(--gray-100);
    padding: 83px 57px;
    display: flex;
    align-items: center;
}

.testimonials-slider {
    width: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 41px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 17px;
}

.quote-icon {
    color: var(--cyan);
    font-size: 25px;
    margin-bottom: 23px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 33px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 55px;
    height: 59px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.author-role {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
}

.company-logo {
    height: 27px;
    opacity: 0.5;
}

.team-split {
    background: var(--gray-100);
}

.team-grid {
    margin-top: 53px;
}

.team-card {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card-dark {
    background: var(--dark);
    color: var(--white);
}

.team-card-light {
    background: var(--white);
    color: var(--dark);
}

.team-card:hover {
    transform: translateY(-11px);
    box-shadow: var(--shadow-xl);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 43px 22px 18px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.team-social a {
    width: 37px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--dark);
    border-radius: 50%;
    font-size: 17px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--cyan);
    color: var(--white);
}

.team-info {
    padding: 26px;
}

.team-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-dark .team-name {
    color: var(--white);
}

.team-role {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.faq-split {
    background: var(--white);
}

.faq-intro {
    padding-right: 59px;
}

.faq-contact {
    padding-top: 33px;
    border-top: 1px solid var(--gray-200);
}

.faq-contact-text {
    color: var(--gray-400);
    margin-bottom: 16px;
}

.faq-accordion {
    margin-top: 33px;
}

.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 11px !important;
    overflow: hidden;
}

.accordion-item-dark {
    background: var(--dark);
}

.accordion-item-light {
    background: var(--gray-100);
}

.accordion-button {
    padding: 23px 29px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    box-shadow: none !important;
}

.accordion-item-dark .accordion-button {
    background: var(--dark);
    color: var(--white);
}

.accordion-item-light .accordion-button {
    background: var(--gray-100);
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: inherit;
    color: inherit;
}

.accordion-button::after {
    background-size: 13px;
    filter: brightness(0) invert(1);
}

.accordion-item-light .accordion-button::after {
    filter: none;
}

.accordion-body {
    padding: 0 29px 26px;
    font-size: 16px;
    line-height: 1.7;
}

.accordion-item-dark .accordion-body {
    color: rgba(255, 255, 255, 0.7);
}

.accordion-item-light .accordion-body {
    color: var(--gray-400);
}

.cta-split {
    background: var(--gradient-primary);
    padding: 0;
}

.cta-container {
    display: flex;
    min-height: 300px;
}

.cta-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 59px 83px;
}

.cta-title {
    font-size: 33px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 58px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-actions {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 23px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.integrations-split {
    background: var(--gray-100);
}

.integrations-grid {
    margin-top: 51px;
}

.integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 27px 18px;
    border-radius: 17px;
    transition: var(--transition);
    text-align: center;
}

.integration-card-dark {
    background: var(--dark);
    color: var(--white);
}

.integration-card-light {
    background: var(--white);
    color: var(--dark);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.integration-card i {
    font-size: 36px;
    margin-bottom: 9px;
}

.integration-card-dark i {
    color: var(--cyan);
}

.integration-card-light i {
    color: var(--electric-blue);
}

.integration-card span {
    font-size: 14px;
    font-weight: 600;
}

.footer-split {
    background: var(--dark);
}

.footer-main {
    padding: 80px 0;
}

.footer-brand {
    max-width: 280px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 43px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-lighter);
    color: var(--white);
    border-radius: 50%;
    font-size: 17px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--cyan);
    color: var(--dark);
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 21px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.footer-contact li i {
    color: var(--cyan);
    margin-top: 4px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--dark-lighter);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.tech-badge {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-lighter);
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 19px;
}

.page-hero-split {
    background: var(--gradient-dark);
    padding-top: 120px;
}

.page-hero-compact {
    padding-bottom: 0;
}

.page-hero-container {
    display: flex;
    min-height: 500px;
}

.page-hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 59px 42px 61px 82px;
}

.page-hero-content {
    max-width: 500px;
}

.page-hero-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 21px;
}

.page-hero-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.page-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 61px;
    position: relative;
}

.page-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 22px;
    box-shadow: var(--shadow-xl);
}

.page-hero-form {
    background: rgba(255, 255, 255, 0.05);
}

.page-hero-pattern {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.contact-form-card {
    background: var(--white);
    padding: 38px;
    border-radius: 22px;
    width: 100%;
    max-width: 480px;
}

.form-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 13px 19px;
    font-size: 13px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.contact-card {
    padding: 37px;
    border-radius: 17px;
    text-align: center;
    height: 100%;
}

.contact-card-dark {
    background: var(--dark);
    color: var(--white);
}

.contact-card-light {
    background: var(--gray-100);
    color: var(--dark);
}

.contact-icon {
    width: 67px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
}

.contact-card-dark .contact-icon {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.contact-card-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card-dark .contact-card-title {
    color: var(--white);
}

.contact-card-desc {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 17px;
}

.contact-link {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 8px;
}

.contact-hours,
.contact-address {
    font-size: 11px;
    opacity: 0.7;
    margin: 0;
}

.blog-grid-split {
    background: var(--white);
}

.blog-card {
    border-radius: 22px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card-featured {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.blog-card-dark {
    background: var(--dark);
    color: var(--white);
}

.blog-card-light {
    background: var(--gray-100);
    color: var(--dark);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 19px;
    left: 18px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 19px;
    margin-bottom: 19px;
}

.blog-date,
.blog-read {
    font-size: 11px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-dark .blog-title a {
    color: var(--white);
}

.blog-card-light .blog-title a {
    color: var(--dark);
}

.blog-title a:hover {
    color: var(--cyan);
}

.blog-excerpt {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 18px;
    line-height: 1.7;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--cyan);
}

.blog-link:hover {
    color: var(--electric-blue);
}

.blog-sidebar {
    position: sticky;
    top: 102px;
}

.sidebar-widget {
    padding: 27px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.sidebar-widget-dark {
    background: var(--dark);
    color: var(--white);
}

.sidebar-widget-light {
    background: var(--gray-100);
    color: var(--dark);
}

.sidebar-widget-cta {
    background: var(--gradient-primary);
    color: var(--white);
}

.widget-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-widget-dark .widget-title {
    color: var(--white);
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form .form-control {
    flex: 1;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 13px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: inherit;
    opacity: 0.8;
}

.category-list a:hover {
    color: var(--cyan);
    opacity: 1;
}

.category-list span {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    padding: 2px 10px;
    border-radius: 53px;
    font-size: 9px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popular-post {
    display: flex;
    gap: 14px;
}

.popular-img {
    width: 70px;
    height: 67px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-info h5 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.popular-info h5 a {
    color: inherit;
}

.popular-info h5 a:hover {
    color: var(--cyan);
}

.popular-date {
    font-size: 13px;
    opacity: 0.6;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.category-tag {
    padding: 11px 22px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 48px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: var(--transition);
}

.category-tag:hover,
.category-tag.active {
    background: var(--cyan);
    color: var(--dark);
}

.article-split {
    background: var(--white);
}

.article-header-split {
    background: var(--gradient-dark);
    padding-top: 120px;
}

.article-header-container {
    display: flex;
    min-height: 500px;
}

.article-header-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 59px 40px 62px 78px;
}

.article-header-content {
    max-width: 550px;
}

.article-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 19px;
    border-radius: 52px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 17px;
    line-height: 1.2;
}

.article-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 33px;
    line-height: 1.7;
}

.article-meta-full {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.author-avatar {
    width: 51px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details .author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.author-details .author-role {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.article-info {
    display: flex;
    gap: 23px;
}

.article-date,
.article-read {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.article-header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 58px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.article-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 21px;
    box-shadow: var(--shadow-xl);
}

.article-content-split {
    padding: 83px 0;
}

.article-body {
    max-width: 100%;
}

.article-body h2 {
    font-size: 26px;
    margin-top: 39px;
    margin-bottom: 23px;
}

.article-body h3 {
    font-size: 21px;
    margin-top: 32px;
    margin-bottom: 15px;
}

.article-body p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 23px;
    color: var(--dark-lighter);
}

.article-quote {
    padding: 32px 40px;
    border-radius: 19px;
    margin: 41px 0;
    position: relative;
}

.article-quote-dark {
    background: var(--dark);
    color: var(--white);
}

.article-quote-light {
    background: var(--gray-100);
    color: var(--dark);
}

.article-quote p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-quote-dark p {
    color: var(--white);
}

.article-quote cite {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: var(--cyan);
}

.article-code-block {
    background: var(--dark);
    border-radius: 9px;
    overflow: hidden;
    margin: 32px 0;
}

.article-code-block .code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 21px;
    background: var(--dark-lighter);
}

.code-lang {
    font-size: 16px;
    color: var(--gray-400);
}

.btn-copy {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy:hover {
    color: var(--cyan);
}

.article-code-block pre {
    padding: 22px;
    margin: 0;
    overflow-x: auto;
}

.article-code-block code {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 15px;
    color: var(--gray-300);
}

.article-list {
    padding-left: 26px;
    margin: 17px 0;
}

.article-list li {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 14px;
    color: var(--dark-lighter);
}

.article-figure {
    margin: 37px 0;
    text-align: center;
}

.article-figure img {
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

.article-figure figcaption {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 15px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 43px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.tags-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.tag {
    padding: 6px 16px;
    background: var(--gray-100);
    color: var(--dark);
    border-radius: 48px;
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background: var(--cyan);
    color: var(--white);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-top: 24px;
}

.share-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 37px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0a66c2;
}

.share-facebook {
    background: #1877f2;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.article-sidebar {
    position: sticky;
    top: 103px;
}

.toc-widget {
    background: var(--gray-100);
    padding: 29px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.toc-link {
    font-size: 15px;
    color: var(--dark);
    padding-left: 14px;
    border-left: 2px solid var(--gray-300);
    transition: var(--transition);
}

.toc-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.author-widget {
    padding: 28px;
    border-radius: 17px;
    text-align: center;
}

.author-widget-dark {
    background: var(--dark);
    color: var(--white);
}

.author-widget-light {
    background: var(--gray-100);
    color: var(--dark);
}

.author-widget-img {
    width: 83px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 19px;
}

.author-widget-name {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-widget-dark .author-widget-name {
    color: var(--white);
}

.author-widget-role {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 16px;
}

.author-widget-bio {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 17px;
}

.author-widget-social {
    display: flex;
    justify-content: center;
    gap: 11px;
}

.author-widget-social a {
    width: 37px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.author-widget-social a:hover {
    background: var(--cyan);
    color: var(--white);
}

.related-posts-split {
    background: var(--dark);
}

.legal-hero-split {
    background: var(--gradient-dark);
    padding: 120px 0 59px;
}

.legal-hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 13px;
    gap: 58px;
}

.legal-hero-left {
    flex: 1;
}

.legal-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-hero-right {
    flex: 0 0 300px;
}

.legal-nav {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 14px;
}

.legal-nav h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

.legal-nav nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-nav a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.legal-nav a:hover {
    color: var(--cyan);
}

.legal-content-split {
    padding: 81px 0;
}

.legal-intro {
    margin-bottom: 43px;
}

.legal-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-400);
}

.legal-section {
    padding: 39px;
    border-radius: 15px;
    margin-bottom: 21px;
}

.legal-section-dark {
    background: var(--dark);
    color: var(--white);
}

.legal-section-light {
    background: var(--gray-100);
    color: var(--dark);
}

.legal-section h2 {
    font-size: 25px;
    margin-bottom: 17px;
}

.legal-section-dark h2 {
    color: var(--white);
}

.legal-section h3 {
    font-size: 19px;
    margin-top: 27px;
    margin-bottom: 10px;
}

.legal-section-dark h3 {
    color: var(--cyan);
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.legal-section ul {
    padding-left: 21px;
    margin: 14px 0;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section-dark li {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    margin-top: 26px;
}

.contact-details p {
    margin-bottom: 13px;
}

.legal-sidebar {
    position: sticky;
    top: 102px;
}

.policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-links li {
    margin-bottom: 10px;
}

.policy-links a {
    color: inherit;
    font-size: 16px;
    opacity: 0.8;
}

.policy-links a:hover {
    color: var(--cyan);
    opacity: 1;
}

.refund-guarantee-box {
    display: flex;
    align-items: center;
    gap: 26px;
    background: var(--gradient-primary);
    padding: 31px 40px;
    border-radius: 14px;
    margin-bottom: 41px;
}

.guarantee-icon {
    width: 67px;
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.guarantee-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.refund-steps {
    margin-top: 27px;
}

.refund-step {
    display: flex;
    gap: 17px;
    padding: 22px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 15px;
    margin-bottom: 19px;
}

.refund-step .step-num {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan);
    color: var(--dark);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.refund-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.refund-step p {
    margin: 0;
    font-size: 18px;
    opacity: 0.8;
}

.timeframe-info {
    margin-top: 32px;
}

.timeframe-card {
    background: rgba(6, 182, 212, 0.1);
    padding: 27px;
    border-radius: 9px;
    text-align: center;
}

.timeframe-label {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.timeframe-value {
    display: block;
    font-size: 31px;
    font-weight: 700;
    color: var(--cyan);
}

.service-hero-split {
    background: var(--gradient-dark);
    padding-top: 120px;
}

.service-hero-container {
    display: flex;
    min-height: 550px;
}

.service-hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 63px 37px 58px 80px;
}

.service-hero-content {
    max-width: 550px;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 23px;
    line-height: 1.1;
}

.service-hero-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 27px;
    line-height: 1.7;
}

.service-hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.service-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.service-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 23px;
    box-shadow: var(--shadow-xl);
}

.service-feature-card {
    padding: 43px 27px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.service-feature-dark {
    background: var(--dark);
    color: var(--white);
}

.service-feature-light {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-feature-card .feature-icon {
    width: 72px;
    height: 73px;
    margin: 0 auto 24px;
    font-size: 28px;
}

.service-feature-card h3 {
    font-size: 20px;
    margin-bottom: 11px;
}

.service-feature-dark h3 {
    color: var(--white);
}

.service-feature-card p {
    font-size: 17px;
    opacity: 0.8;
    margin: 0;
}

.process-steps-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.process-step-card {
    padding: 28px;
    border-radius: 19px;
}

.process-step-light {
    background: var(--white);
    color: var(--dark);
}

.process-step-dark {
    background: var(--dark-lighter);
    color: var(--white);
}

.process-step-card .step-number {
    display: inline-block;
    font-size: 36px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 13px;
}

.process-step-card h4 {
    font-size: 18px;
    margin-bottom: 11px;
}

.process-step-light h4 {
    color: var(--dark);
}

.process-step-dark h4 {
    color: var(--white);
}

.process-step-card p {
    font-size: 15px;
    margin: 0;
    opacity: 0.8;
}

.tech-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.tech-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 19px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.tech-badge-dark {
    background: var(--dark);
    color: var(--white);
}

.tech-badge-light {
    background: var(--gray-100);
    color: var(--dark);
}

.tech-badge-item:hover {
    transform: translateY(-3px);
}

.tech-badge-item i {
    font-size: 29px;
    margin-bottom: 12px;
}

.tech-badge-dark i {
    color: var(--cyan);
}

.tech-badge-light i {
    color: var(--electric-blue);
}

.tech-badge-item span {
    font-size: 15px;
    font-weight: 600;
}

.service-pricing-card {
    padding: 43px;
    border-radius: 19px;
    height: 100%;
    position: relative;
}

.pricing-card-featured {
    background: var(--white);
    color: var(--dark);
    transform: scale(1.05);
}

.pricing-card-light {
    background: var(--gray-100);
    color: var(--dark);
}

.pricing-card-dark {
    background: var(--dark-lighter);
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
}

.service-pricing-card h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 14px;
}

.pricing-card-light h3,
.pricing-card-featured h3 {
    color: var(--dark);
}

.pricing-card-dark h3 {
    color: var(--white);
}

.service-pricing-card .price {
    text-align: center;
    font-size: 37px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 32px;
}

.service-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 33px;
}

.service-pricing-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card-dark li {
    border-color: rgba(255, 255, 255, 0.1);
}

.service-pricing-card li i {
    color: var(--cyan);
}

.platform-card {
    padding: 49px 42px;
    height: 100%;
}

.platform-card-dark {
    background: var(--dark);
    color: var(--white);
}

.platform-card-light {
    background: var(--gray-100);
    color: var(--dark);
}

.platform-icon {
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 37px;
    margin-bottom: 21px;
}

.platform-card-dark .platform-icon {
    color: var(--cyan);
}

.platform-card-light .platform-icon {
    color: var(--dark);
}

.platform-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.platform-card-dark h3 {
    color: var(--white);
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 27px 0 0;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 17px;
}

.platform-features li i {
    color: var(--cyan);
}

.process-timeline-duo {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.process-timeline-duo::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 42px;
}

.timeline-left {
    justify-content: flex-start;
    padding-right: 50%;
}

.timeline-right {
    justify-content: flex-end;
    padding-left: 50%;
}

.timeline-item .timeline-content {
    background: var(--white);
    padding: 33px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    position: relative;
}

.timeline-item .timeline-step {
    position: absolute;
    width: 51px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 19px;
    font-weight: 700;
    z-index: 2;
}

.timeline-left .timeline-step {
    right: -72px;
}

.timeline-right .timeline-step {
    left: -76px;
}

.timeline-content h4 {
    font-size: 19px;
    margin-bottom: 9px;
}

.timeline-content p {
    font-size: 17px;
    color: var(--gray-400);
    margin: 0;
}

.provider-card {
    padding: 41px;
    border-radius: 22px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.provider-card-dark {
    background: var(--dark);
    color: var(--white);
}

.provider-card-light {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.provider-icon {
    font-size: 52px;
    margin-bottom: 23px;
}

.provider-card-dark .provider-icon {
    color: var(--cyan);
}

.provider-card-light .provider-icon {
    color: var(--dark);
}

.provider-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
}

.provider-card-dark h3 {
    color: var(--white);
}

.provider-card p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 27px;
}

.provider-services {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.provider-services li {
    padding: 13px 0;
    font-size: 11px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-card-dark .provider-services li {
    border-color: rgba(255, 255, 255, 0.1);
}

.cloud-service-card {
    padding: 41px;
}

.cloud-service-light {
    background: var(--white);
    color: var(--dark);
}

.cloud-service-dark {
    background: var(--dark-lighter);
    color: var(--white);
}

.cloud-service-card .service-icon {
    width: 60px;
    height: 63px;
    font-size: 23px;
    margin-bottom: 18px;
}

.cloud-service-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.cloud-service-light h3 {
    color: var(--dark);
}

.cloud-service-dark h3 {
    color: var(--white);
}

.cloud-service-card p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.benefits-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
}

.benefits-content {
    padding-left: 40px;
}

.benefits-list {
    margin-top: 33px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 26px;
}

.benefit-icon {
    width: 52px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 13px;
    font-size: 19px;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 13px;
    color: var(--gray-400);
    margin: 0;
}

.capability-card {
    padding: 40px;
}

.capability-card-dark {
    background: var(--dark);
    color: var(--white);
}

.capability-card-light {
    background: var(--white);
    color: var(--dark);
}

.capability-icon {
    width: 63px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 11px;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 27px;
}

.capability-card-dark .capability-icon {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.capability-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.capability-card-dark h3 {
    color: var(--white);
}

.capability-card p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 19px;
}

.capability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-card li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    font-size: 13px;
}

.capability-card li i {
    color: var(--cyan);
}

.usecase-card {
    padding: 31px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.usecase-card-light {
    background: var(--white);
    color: var(--dark);
}

.usecase-card-dark {
    background: var(--dark-lighter);
    color: var(--white);
}

.usecase-card:hover {
    transform: translateY(-5px);
}

.usecase-icon {
    width: 60px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    background: var(--gradient-primary);
    border-radius: 15px;
    font-size: 22px;
    color: var(--white);
}

.usecase-card-dark .usecase-icon {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.usecase-card h3 {
    font-size: 16px;
    margin-bottom: 11px;
}

.usecase-card-dark h3 {
    color: var(--white);
}

.usecase-card p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.ai-process-steps {
    position: relative;
}

.ai-step {
    display: flex;
    margin-bottom: 31px;
}

.ai-step-left {
    justify-content: flex-start;
}

.ai-step-right {
    justify-content: flex-end;
}

.step-marker {
    width: 49px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 23px;
}

.ai-step-right .step-marker {
    order: 2;
    margin-right: 0;
    margin-left: 20px;
}

.ai-step .step-content {
    background: var(--gray-100);
    padding: 26px;
    border-radius: 12px;
    max-width: 350px;
}

.ai-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.ai-step p {
    font-size: 12px;
    color: var(--gray-400);
    margin: 0;
}

.case-study-featured {
    overflow: hidden;
}

.case-study-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-featured:hover .case-study-img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 17px;
    left: 23px;
}

.case-study-category {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 13px;
    border-radius: 47px;
    font-size: 11px;
    font-weight: 600;
}

.case-study-content {
    padding: 49px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.case-study-dark {
    background: var(--dark);
    color: var(--white);
}

.case-study-light {
    background: var(--gray-100);
    color: var(--dark);
}

.case-study-client {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 14px;
}

.case-study-title {
    font-size: 28px;
    margin-bottom: 19px;
}

.case-study-dark .case-study-title {
    color: var(--white);
}

.case-study-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.7;
}

.case-study-results {
    display: flex;
    gap: 31px;
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 35px;
    font-weight: 800;
    color: var(--cyan);
}

.result-label {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}

.clients-grid {
    margin-top: 49px;
}

.client-logo {
    padding: 33px 22px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo-light {
    background: rgba(255, 255, 255, 0.1);
}

.client-logo-dark {
    background: var(--dark-lighter);
}

.client-logo:hover {
    transform: translateY(-3px);
}

.client-logo img {
    max-height: 42px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.pricing-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-lighter);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 17px 22px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}

.pricing-comparison-table .feature-col {
    text-align: left;
    width: 40%;
}

.pricing-comparison-table .plan-featured {
    background: rgba(6, 182, 212, 0.1);
}

.pricing-comparison-table td {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.pricing-comparison-table td.featured {
    background: rgba(6, 182, 212, 0.05);
}

.pricing-comparison-table .category-row td {
    background: var(--dark);
    color: var(--cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.pricing-comparison-table tfoot td {
    padding: 21px;
    border: none;
}

.pricing-guarantee {
    background: var(--white);
    padding: 42px;
    border-radius: 21px;
    text-align: center;
    max-width: 350px;
}

.pricing-guarantee .guarantee-icon {
    width: 68px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 32px;
    color: var(--white);
}

.pricing-guarantee h4 {
    font-size: 18px;
    margin-bottom: 11px;
}

.pricing-guarantee p {
    font-size: 17px;
    color: var(--gray-400);
    margin: 0;
}

.article-highlight {
    display: flex;
    gap: 18px;
    padding: 23px;
    border-radius: 13px;
    margin: 32px 0;
}

.article-highlight-light {
    background: var(--gray-100);
}

.article-highlight-dark {
    background: var(--dark);
    color: var(--white);
}

.highlight-icon {
    width: 52px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.highlight-content p {
    margin: 0;
    font-size: 16px;
}

.article-steps {
    margin: 31px 0;
}

.step-item {
    display: flex;
    gap: 22px;
    padding: 27px;
    border-radius: 13px;
    margin-bottom: 19px;
}

.step-item-dark {
    background: var(--dark);
    color: var(--white);
}

.step-item-light {
    background: var(--gray-100);
    color: var(--dark);
}

.step-item .step-num {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan);
    color: var(--dark);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step-item-dark h4 {
    color: var(--white);
}

.step-item p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.article-video-wrapper {
    margin: 40px 0;
    text-align: center;
}

.video-placeholder {
    position: relative;
    display: inline-block;
    border-radius: 13px;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    max-width: 700px;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 77px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 31px;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 17px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 28px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-100);
    font-size: 12px;
    font-weight: 700;
}

.comparison-table th.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table td {
    font-size: 12px;
}

.comparison-table td.highlight {
    background: rgba(6, 182, 212, 0.05);
}

.article-cta-box {
    background: var(--gradient-primary);
    padding: 39px;
    border-radius: 13px;
    text-align: center;
    margin: 43px 0;
}

.article-cta-box h4 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 14px;
}

.article-cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
}

.value-card {
    padding: 39px 28px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card-light {
    background: var(--white);
    color: var(--dark);
}

.value-card-dark {
    background: var(--dark-lighter);
    color: var(--white);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 26px;
    color: var(--white);
}

.value-card-dark .value-icon {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
}

.value-title {
    font-size: 22px;
    margin-bottom: 11px;
}

.value-card-dark .value-title {
    color: var(--white);
}

.value-desc {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

.mission-content {
    padding: 47px;
    height: 100%;
}

.mission-dark {
    background: var(--dark);
}

.mission-light {
    background: var(--gray-100);
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 21px 0 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    font-size: 16px;
}

.mission-list li i {
    color: var(--cyan);
}

.story-img {
    width: 100%;
    border-radius: 17px;
    box-shadow: var(--shadow-xl);
}

.story-content {
    padding-left: 40px;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

.timeline-year {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-event {
    font-size: 16px;
    color: var(--gray-400);
}

.process-duo .process-step {
    padding: 52px;
}

.process-step-dark {
    background: var(--dark-lighter);
    color: var(--white);
}

.process-step-light {
    background: var(--white);
    color: var(--dark);
}

.process-step .step-number {
    display: block;
    font-size: 46px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 20px;
}

.process-step .step-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step-dark .step-title {
    color: var(--white);
}

.process-step .step-desc {
    font-size: 13px;
    margin: 0;
    opacity: 0.8;
}

.tech-grid-duo {
    margin-top: 47px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 13px;
    border-radius: 9px;
    text-align: center;
    transition: var(--transition);
}

.tech-item-dark {
    background: var(--dark);
    color: var(--white);
}

.tech-item-light {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.tech-item:hover {
    transform: translateY(-3px);
}

.tech-item i {
    font-size: 34px;
    margin-bottom: 11px;
}

.tech-item-dark i {
    color: var(--cyan);
}

.tech-item-light i {
    color: var(--electric-blue);
}

.tech-item span {
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-split-container,
    .stats-container,
    .testimonials-container,
    .cta-container,
    .page-hero-container,
    .article-header-container,
    .service-hero-container,
    .legal-hero-container {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .stats-left,
    .stats-right,
    .testimonials-left,
    .testimonials-right,
    .cta-left,
    .cta-right,
    .page-hero-left,
    .page-hero-right,
    .article-header-left,
    .article-header-right,
    .service-hero-left,
    .service-hero-right {
        flex: none;
        padding: 63px 33px;
    }

    .hero-title,
    .page-hero-title,
    .article-title,
    .service-hero-title {
        font-size: 33px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-stats-float {
        position: static;
        flex-direction: row;
        justify-content: center;
        transform: none;
        margin-top: 40px;
    }

    .process-steps-duo,
    .tech-badges-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline-duo::before {
        left: 28px;
    }

    .timeline-left,
    .timeline-right {
        padding-left: 78px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-left .timeline-step,
    .timeline-right .timeline-step {
        left: -56px;
        right: auto;
    }

    .timeline-item .timeline-content {
        max-width: none;
    }

    .pricing-card-featured {
        transform: none;
    }

    .legal-hero-right {
        flex: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 23px;
    }

    .features-intro {
        padding-right: 0;
        margin-bottom: 41px;
    }

    .faq-intro {
        padding-right: 0;
        margin-bottom: 42px;
    }

    .benefits-content,
    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-left,
    .hero-right,
    .page-hero-left,
    .page-hero-right {
        padding: 39px 23px;
    }

    .hero-title {
        font-size: 31px;
    }

    .page-hero-title,
    .service-hero-title {
        font-size: 29px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-cta,
    .service-hero-cta,
    .cta-actions {
        flex-direction: column;
    }

    .hero-cta .btn,
    .service-hero-cta .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .stats-left,
    .stats-right {
        flex-direction: column;
        gap: 30px;
        padding: 37px 20px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 17px;
    }

    .case-study-content {
        padding: 30px;
    }

    .case-study-results {
        flex-direction: column;
        gap: 18px;
    }

    .result-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 10px 18px;
        font-size: 15px;
    }

    .article-quote {
        padding: 27px;
    }

    .article-quote p {
        font-size: 16px;
    }

    .legal-section {
        padding: 31px 22px;
    }
}
