
.value-item {
    padding: 2rem 1.5rem;
    background-color: var(--card-bg);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--card-shadow);
    height: 100%;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--card-shadow);
}

.value-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    animation: pulse 2s infinite;
}

.cta-badge i {
    font-size: 1rem;
    color: #ffd700;
}

.cta-offer {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-offer strong {
    color: #ffffff;
    font-weight: 700;
}

.trust-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.trust-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.trust-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.trust-stat:hover {
    transform: translateY(-10px) scale(1.05);
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.trust-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 60%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.4s ease;
}

.trust-stat:hover .trust-number::after {
    transform: translateX(-50%) scaleX(1);
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.animate-fade.animated {
    opacity: 1;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.animate-stagger-1 { transition-delay: 0.1s; }
.animate-stagger-2 { transition-delay: 0.2s; }
.animate-stagger-3 { transition-delay: 0.3s; }
.animate-stagger-4 { transition-delay: 0.4s; }
.animate-stagger-5 { transition-delay: 0.5s; }
.animate-stagger-6 { transition-delay: 0.6s; }

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --accent-color: #667eea;
    --accent-hover: #5568d3;
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --border-color: #dee2e6;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #212529;
    --footer-text: #ffffff;
}

[data-theme="dark"] {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-tertiary: #0f3460;
    --text-primary: #eaeaea;
    --text-secondary: #b8b8b8;
    --accent-color: #667eea;
    --accent-hover: #7c8ef5;
    --card-bg: #16213e;
    --card-shadow: rgba(0, 0, 0, 0.3);
    --border-color: #2d3748;
    --navbar-bg: rgba(26, 26, 46, 0.95);
    --footer-bg: #0a0a14;
    --footer-text: #eaeaea;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--card-shadow);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-hover) !important;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.lang-btn.active {
    border-color: var(--accent-color);
    background-color: rgba(102, 126, 234, 0.1);
}

.lang-btn img {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
}

.mobile-fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-item {
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpMobile 0.6s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUpMobile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
    padding-left: 3rem;
}

.mobile-nav-link:hover::before {
    width: 60px;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-theme-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
    transform: rotate(20deg);
}

.mobile-social-icons {
    display: flex;
    gap: 1.5rem;
}

.mobile-social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}


.navbar.fixed-top {
    z-index: 2005;
}


.mobile-fullscreen-menu {
    z-index: 2010;
}

.mobile-menu-close {
    z-index: 2012;
}

.mobile-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
}

.mobile-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.mobile-theme-toggle i {
    font-size: 1.25rem;
}

.mobile-theme-text {
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -50px;
    left: -50px;
}

.decoration-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

[data-theme="dark"] .hero-badge {
    background-color: rgba(102, 126, 234, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-buttons .btn {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hero-buttons .btn i {
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--card-shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--card-shadow);
}

.stat-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.stat-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero-mockup {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.browser-header {
    background: linear-gradient(to bottom, #3a4f5f 0%, #2c3e50 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.4rem;
}

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

.dot-red {
    background-color: #ff5f56;
}

.dot-yellow {
    background-color: #ffbd2e;
}

.dot-green {
    background-color: #27c93f;
}

.browser-address {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.browser-address i {
    font-size: 0.75rem;
    color: #27c93f;
}

.browser-actions {
    width: 60px;
}
.browser-content {
    position: relative;
    background-color: #1a252f;
    aspect-ratio: 16/10;
}

.browser-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeInUp 0.6s ease 1s both;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.scroll-link:hover {
    color: var(--accent-color);
}

.scroll-link i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent-color);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-outline-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.btn-light::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-light:hover::after {
    width: 300%;
    height: 300%;
}

.btn-light:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.bg-light-section {
    background-color: var(--bg-secondary);
}


.tech-list {
    margin-top: 3rem;
}

.tech-item {
    padding: 2rem 1rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--card-shadow);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--card-shadow);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.tech-item p {
    font-weight: 500;
    color: var(--text-primary);
}


.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 10px var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px var(--card-shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--accent-color);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    transition: color 0.3s ease;
}



.portfolio-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 10px var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.portfolio-card:hover::before {
    left: 100%;
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px var(--card-shadow);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.15);
}

.portfolio-content {
    padding: 1.5rem;
    position: relative;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: var(--accent-color);
}

.portfolio-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-badge {
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-secondary);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}


.pricing-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .pricing-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    height: 100%;
    position: relative;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.045) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.pricing-card:hover::before {
    transform: scale(1);
}

[data-theme="dark"] .pricing-card {
    background-color: var(--card-bg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.06);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
    border-color: rgba(102, 126, 234, 0.65);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

[data-theme="dark"] .pricing-card.featured {
    background: linear-gradient(135deg, var(--card-bg) 0%, #1e2a4a 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: #ffffff;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    animation: pulse 2s infinite;
}


.pricing-header {
    text-align: center;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.pricing-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(102, 126, 234, 0.28);
    transition: all 0.4s ease;
}

.pricing-card:hover .pricing-icon {
    transform: rotateY(360deg) scale(1.05);
}

.pricing-plan {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.pricing-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}


.pricing-price {
    text-align: center;
    margin-bottom: 1.4rem;
    padding: 1.1rem 0;
    position: relative;
    z-index: 1;
}

.price-amount {
    display: block;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.4rem;
    transition: transform 0.3s ease;
}

.pricing-card:hover .price-amount {
    transform: scale(1.05);
}

.price-period {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem 0;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 0.55rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border-bottom: 1px solid var(--bg-secondary);
    transition: all 0.25s ease;
}

.pricing-features li:hover {
    padding-left: 0.35rem;
    background-color: rgba(102, 126, 234, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 1.05rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-features li.not-included {
    opacity: 0.4;
}

.pricing-features li i.bi-check-circle-fill {
    color: #27ae60;
}

.pricing-features li.not-included i.bi-x-circle-fill {
    color: #e74c3c;
}

.pricing-features li span {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-card .btn {
    border-radius: 12px;
}

.pricing-info {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.4rem 1.75rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .pricing-info {
    background-color: var(--card-bg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-item {
    padding: 0.75rem;
    transition: all 0.25s ease;
}

.info-item:hover {
    transform: translateY(-4px);
}

.info-item i {
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    transition: all 0.35s ease;
}

.info-item:hover i {
    transform: rotateY(360deg);
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.info-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}


@media (max-width: 991px) {
    .pricing-card {
        padding: 1.4rem 1.2rem;
    }

    .pricing-plan {
        font-size: 1.3rem;
    }

    .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.0rem;
    }

    .pricing-features li span {
        font-size: 0.85rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-info {
        padding: 2rem 1.4rem;
    }
}

@media (max-width: 575px) {
    .pricing-card {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }

    .pricing-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        border-radius: 16px;
    }

    .pricing-plan {
        font-size: 1.2rem;
    }

    .pricing-subtitle {
        font-size: 0.85rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .price-period {
        font-size: 0.85rem;
    }

    .pricing-features li {
        padding: 0.45rem 0;
    }

    .pricing-features li span {
        font-size: 0.8rem;
    }

    .pricing-card .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }

    .pricing-info {
        padding: 1.6rem 1.1rem;
        border-radius: 14px;
    }

    .info-item i {
        font-size: 2.1rem;
    }

    .info-item h4 {
        font-size: 1.02rem;
    }

    .info-item p {
        font-size: 0.85rem;
    }
}

.testimonials-section {
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

[data-theme="dark"] .testimonials-section {
    background-color: var(--bg-secondary);
}

.testimonials-slider-wrapper {
    position: relative;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    min-height: 550px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.testimonial-nav:hover {
    background-color: #c0392b;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.testimonial-prev {
    left: -80px;
}

.testimonial-next {
    right: -80px;
}


.testimonial-content {
    padding: 3rem;
    padding-right: 4rem;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[data-theme="dark"] .testimonial-content {
    background-color: var(--card-bg);
}

.quote-icon {
    font-size: 4rem;
    color: #b89b84;
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 400;
}

[data-theme="dark"] .testimonial-text {
    color: var(--text-primary);
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

[data-theme="dark"] .author-name {
    color: var(--text-primary);
}

.author-role {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

[data-theme="dark"] .author-role {
    color: var(--text-secondary);
}

.testimonial-mockup {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor-frame {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

.monitor-screen {
    overflow: hidden;
    border-radius: 12px;
}

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

.monitor-screen {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px 15px 0 0;
    padding: 0.8rem;
    border: 10px solid #2c3e50;
    box-shadow: 
        0 0 0 2px #1a252f,
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.monitor-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background-color: #1a252f;
    border-radius: 3px;
    z-index: 1;
}

.monitor-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.monitor-stand {
    width: 100px;
    height: 70px;
    background: linear-gradient(to bottom, #34495e 0%, #2c3e50 100%);
    margin: 0 auto;
    position: relative;
    clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
}

.monitor-base {
    width: 180px;
    height: 12px;
    background: linear-gradient(to bottom, #2c3e50 0%, #1a252f 100%);
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}


.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 4rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c5c5c5;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.dot:hover {
    background-color: #a0a0a0;
    transform: scale(1.3);
}

.dot.active {
    background-color: #e74c3c;
    width: 35px;
    border-radius: 5px;
    transform: scale(1);
}


.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    padding: 80px 0;
    color: #ffffff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-email:hover {
    color: var(--accent-hover);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px var(--card-shadow);
    border: 1px solid var(--border-color);
}

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

.form-control,
.form-select {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--bg-primary);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.social-links p {
    font-weight: 500;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}


.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 0;
    margin-top: 0;
    position: relative;
}


.footer-logo-link{
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 1rem;
}

.footer-logo-img{
  width: clamp(160px, 18vw, 220px);   
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.25));
}

.footer-logo-link{
  display: inline-flex;
  line-height: 0;
  margin-bottom: 1.2rem;
}

.footer-logo-link{
  display: inline-flex;
  line-height: 0;
  margin-bottom: 1.5rem;
}

.footer-logo-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 140px;                
  padding: 22px 36px;          
  border-radius: 26px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 40px var(--card-shadow);
  transition: all 0.35s ease;
}

.footer-logo-wrap img{
  height: 95px;                  
  width: auto;
  object-fit: contain;
  display: block;
}


.footer-logo-link:hover .footer-logo-wrap{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px var(--card-shadow);
  border-color: rgba(102,126,234,0.6);
}


@media (max-width: 575px){
  .footer-logo-wrap{
    height: 120px;
    padding: 18px 28px;
    border-radius: 22px;
  }

  .footer-logo-wrap img{
    height: 80px;
  }
}


.footer-logo-link:hover .footer-logo-wrap{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px var(--card-shadow);
  border-color: rgba(102,126,234,0.6);
}


@media (max-width: 575px){
  .footer-logo-wrap{
    height: 80px;
    padding: 12px 18px;
    border-radius: 18px;
  }

  .footer-logo-wrap img{
    height: 50px;
  }

}


@media (max-width: 575px){
  .footer-logo-img{
    width: clamp(160px, 55vw, 210px);
  }
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0a14 0%, #16213e 100%);
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-column {
    height: 100%;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, transparent 100%);
}


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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8b8b8;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #667eea;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #b8b8b8;
}

.contact-item i {
    font-size: 1.2rem;
    color: #667eea;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-item span {
    display: inline-block;
}

.contact-item a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
}

.form-message.success {
  background-color: #e6f9ed;
  color: #1e7e34;
  border: 1px solid #b7ebc6;
}

.form-message.error {
  background-color: #fdecea;
  color: #c82333;
  border: 1px solid #f5c6cb;
}

@media (max-width: 767px){


  .footer-column{
    text-align: center;
  }

  .footer-logo-link{
    justify-content: center;
    width: 100%;
  }

  .footer-logo-wrap{
    margin-left: auto;
    margin-right: auto;
  }

}


.footer-social {
    margin-top: 2rem;
}

.social-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-icons-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon-footer {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background-color: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-3px);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-copyright,
.footer-credits {
    font-size: 0.9rem;
    color: #888;
}

.footer-copyright {
    font-weight: 500;
}

.footer-credits {
    font-style: italic;
}


@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-mockup {
        margin-top: 3rem;
    }
    
    .floating-card-1 {
        right: 10px;
    }
    
    .floating-card-2 {
        left: 10px;
    }
    

    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .language-switcher {
        margin-right: 0.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
    }
    
    .stat-item span {
        white-space: normal;
        font-size: 0.8rem;
    }
    
    .stat-item i {
        font-size: 1rem;
    }
    
    .hero-mockup {
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 0.5rem 0.75rem;
    }
    
    .floating-card span {
        font-size: 0.75rem;
    }
    
    .decoration-1 {
        width: 250px;
        height: 250px;
    }
    
    .decoration-2 {
        width: 200px;
        height: 200px;
    }
    
    .decoration-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .browser-header {
        padding: 0.5rem 0.75rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .browser-address {
        font-size: 0.7rem;
    }
    
    .hero-buttons .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.88rem;
    }

    .process-card {
        padding: 1.5rem 1.25rem;
    }
    
    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .process-title {
        font-size: 1.1rem;
    }
    
    .process-description {
        font-size: 0.88rem;
    }
    

    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 1.25rem;
    }
    
    .portfolio-title {
        font-size: 1.05rem;
    }
    
    .portfolio-description {
        font-size: 0.85rem;
    }
    
    .tech-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
    }
    
    .portfolio-card .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    

    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    
    .pricing-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }
    
    .pricing-plan {
        font-size: 1.4rem;
    }
    
    .pricing-subtitle {
        font-size: 0.85rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .price-period {
        font-size: 0.85rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
    }
    
    .pricing-features li i {
        font-size: 1rem;
    }
    
    .pricing-features li span {
        font-size: 0.82rem;
    }
    
    .pricing-card .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1.25rem;
    }
    
    .pricing-info {
        padding: 1.75rem 1.25rem;
    }
    
    .info-item i {
        font-size: 2.5rem;
    }
    
    .info-item h4 {
        font-size: 1.05rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    

    .trust-title {
        font-size: 1.5rem;
    }
    
    .trust-number {
        font-size: 2.2rem;
    }
    
    .trust-label {
        font-size: 0.82rem;
    }
    

    .value-item {
        padding: 1.5rem 1.25rem;
    }
    
    .value-item i {
        font-size: 2.5rem;
    }
    
    .value-item h4 {
        font-size: 1.15rem;
    }
    
    .value-item p {
        font-size: 0.88rem;
    }
    

    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-offer {
        font-size: 1rem;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    

    .contact-email {
        font-size: 1.2rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }
    

    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.05rem;
    }
    
    .footer-links a {
        font-size: 0.88rem;
    }
    
    .contact-item {
        font-size: 0.88rem;
    }
    
    .social-icon-footer {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-copyright,
    .footer-credits {
        font-size: 0.8rem;
    }
    

    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }

    .mobile-nav-link {
        font-size: 1.6rem;
        padding: 0.75rem 2rem;
    }
    
    .mobile-menu-close {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .mobile-social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .footer-column:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .footer-brand {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .footer-about,
    .footer-tagline {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-copyright,
    .footer-credits {
        margin-bottom: 0.5rem;
    }
}


@media (max-width: 1199px) {
    .testimonial-prev {
        left: -20px;
    }
    
    .testimonial-next {
        right: -20px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-item {
        text-align: center;
    }
    
    .theme-toggle {
        margin: 1rem auto;
        display: block;
    }
    

    .pricing-card.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    

    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-slide .row {
        flex-direction: column-reverse;
    }
    
    .testimonial-content {
        padding: 2.5rem 2rem;
        margin-top: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-mockup {
        padding: 1rem;
    }
    
    .testimonial-prev {
        left: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-next {
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonials-slider {
        min-height: 750px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
    
    .pricing-plan {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-info {
        padding: 2rem 1.5rem;
    }
    
    .pricing-features li {
        padding: 0.6rem 0;
    }
    
    .pricing-features li span {
        font-size: 0.88rem;
    }
    
    .pricing-card .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    

    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-slider {
        min-height: 850px;
    }
    
    .testimonial-dots {
        margin-top: 3rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-prev {
        left: 5px;
        width: 45px;
        height: 45px;
    }
    
    .testimonial-next {
        right: 5px;
        width: 45px;
        height: 45px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-name {
        font-size: 0.85rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .testimonials-slider {
        min-height: 900px;
    }
}



.process-carousel-section {
    background-color: var(--bg-primary);
}

.process-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 1rem);
    gap: 1.25rem;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    width: 100%;
}

.process-slide {
    min-width: 0;
}

.process-step {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 35px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    opacity: 0.9;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px var(--card-shadow);
    border-color: rgba(102, 126, 234, 0.6);
}

.process-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.35);
    margin-bottom: 1rem;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-step-desc {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-nav {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 30px var(--card-shadow);
    flex: 0 0 auto;
}

.process-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 16px 45px var(--card-shadow);
}

.process-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.process-progress {
    height: 6px;
    background-color: var(--bg-secondary);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 1.25rem;
    border: 1px solid var(--border-color);
}

.process-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Responsive: 2 cards */
@media (max-width: 991px) {
    .process-track {
        grid-auto-columns: calc(50% - 0.75rem);
    }
}


@media (max-width: 575px) {
    .process-track {
        grid-auto-columns: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.75rem;
    }

    .process-slide {
        scroll-snap-align: start;
    }

    .process-nav {
        display: none;
    }

    .process-step {
        padding: 1.5rem;
    }
}


.hero-visual{
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  place-items: center;
  animation: fadeInRight 0.8s ease 0.35s both;
}

.hero-orb{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orb-glow{
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(102,126,234,0.55), rgba(118,75,162,0.35), transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
  animation: orbPulse 4.5s ease-in-out infinite;
}

.orb-ring{
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(102,126,234,0.25);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
  backdrop-filter: blur(6px);
}

.ring-1{ width: 520px; height: 320px; transform: rotate(18deg); animation: ringSpin 14s linear infinite; }
.ring-2{ width: 420px; height: 260px; transform: rotate(-12deg); animation: ringSpin 18s linear infinite reverse; }
.ring-3{ width: 300px; height: 200px; transform: rotate(8deg);  animation: ringSpin 22s linear infinite; }

@keyframes ringSpin{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}
@keyframes orbPulse{
  0%,100%{ transform: scale(1); opacity: 0.85; }
  50%{ transform: scale(1.06); opacity: 1; }
}

.hero-showcase{
  width: min(520px, 100%);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(222,226,230,0.9);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .hero-showcase{
  background: rgba(22,33,62,0.72);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 26px 85px rgba(0,0,0,0.35);
}

.hero-showcase::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(135deg, rgba(102,126,234,0.6), rgba(118,75,162,0.45), rgba(79,172,254,0.45));
  filter: blur(18px);
  opacity: 0.45;
  z-index: 0;
}

.showcase-head{
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .showcase-head{
  border-bottom-color: rgba(255,255,255,0.08);
}

.showcase-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(102,126,234,0.10);
  border: 1px solid rgba(102,126,234,0.20);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.pill-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(102,126,234,0.16);
}

.showcase-mini-metrics{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-metric{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px var(--card-shadow);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mini-metric i{
  color: var(--accent-color);
  font-size: 0.95rem;
}

.showcase-body{
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.feature-card{
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 30px var(--card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 48px var(--card-shadow);
  border-color: rgba(102,126,234,0.55);
}

.feature-card i{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #fff;
  font-size: 1.2rem;
  flex: 0 0 auto;
  box-shadow: 0 12px 30px rgba(102,126,234,0.28);
}

.feature-card h4{
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.feature-card p{
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.showcase-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
  flex-wrap: wrap;
}

.stack{
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stack-badge{
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.78rem;
}

.showcase-link{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: var(--accent-color);
  transition: transform 0.25s ease, color 0.25s ease;
}

.showcase-link:hover{
  color: var(--accent-hover);
  transform: translateX(4px);
}

/* Mobile tweaks */
@media (max-width: 575px){
  .hero-visual{ min-height: 460px; }
  .orb-glow{ width: 280px; height: 280px; }
  .ring-1{ width: 420px; height: 260px; }
  .ring-2{ width: 340px; height: 220px; }
  .ring-3{ width: 260px; height: 180px; }
}


.testimonials-premium{
  background-color: var(--bg-secondary);
}

[data-theme="dark"] .testimonials-premium{
  background-color: var(--bg-secondary);
}

/* Summary bar */
.review-summary{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 14px 45px var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .review-summary{
  background: rgba(22,33,62,0.72);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.summary-left{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stars{
  display: inline-flex;
  gap: 0.25rem;
  color: #f5c451;
  font-size: 1.05rem;
  line-height: 1;
}

.summary-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.summary-text strong{
  font-size: 1.35rem;
  color: var(--text-primary);
  font-weight: 800;
}

.summary-text span{
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary-right{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kpi{
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 10px 25px var(--card-shadow);
}

.kpi-number{
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1.1;
}

.kpi-label{
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 700;
}


.review-card{
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.6rem 1.6rem 1.4rem;
  height: 100%;
  box-shadow: 0 14px 45px var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .review-card{
  background: rgba(22,33,62,0.72);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.review-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(135deg, rgba(102,126,234,0.55), rgba(118,75,162,0.45), rgba(79,172,254,0.40));
  opacity: 0.18;
  filter: blur(18px);
  z-index: 0;
}

.review-card:hover{
  transform: translateY(-10px);
  border-color: rgba(102,126,234,0.55);
  box-shadow: 0 22px 65px var(--card-shadow);
}

.review-top{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-quote{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #fff;
  box-shadow: 0 12px 30px rgba(102,126,234,0.28);
  flex: 0 0 auto;
}

.review-quote i{
  font-size: 1.2rem;
}

.review-chip{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(102,126,234,0.10);
  border: 1px solid rgba(102,126,234,0.20);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
}

.review-chip i{
  color: var(--accent-color);
}

.review-chip.muted{
  background: rgba(108,117,125,0.10);
  border-color: rgba(108,117,125,0.18);
  color: var(--text-secondary);
}

.review-text{
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 1.25rem 0;
}

[data-theme="dark"] .review-text{
  color: var(--text-secondary);
}

.review-footer{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .review-footer{
  border-top-color: rgba(255,255,255,0.08);
}

.review-author{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar-circle{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  box-shadow: 0 12px 30px rgba(102,126,234,0.28);
  letter-spacing: 0.5px;
  flex: 0 0 auto;
}

.author-name{
  margin: 0 0 0.15rem 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-primary);
}

.author-role{
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px){
  .review-summary{
    padding: 1.1rem 1.25rem;
  }
  .kpi{ min-width: 100px; }
}

@media (max-width: 575px){
  .review-summary{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .summary-right{
    width: 100%;
    justify-content: flex-start;
  }
  .kpi{
    flex: 1 1 30%;
    min-width: 95px;
  }
  .review-card{
    padding: 1.35rem 1.25rem 1.2rem;
    border-radius: 18px;
  }
}


.navbar-brand.brand-logo{
  padding: 0 !important;     
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}


.brand-logo-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;                  
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 18px var(--card-shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}


.brand-logo-wrap img{
  height: 38px;                   
  width: auto;
  display: block;
  object-fit: contain;
}


.navbar-brand.brand-logo:hover .brand-logo-wrap{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--card-shadow);
  border-color: rgba(102,126,234,0.55);
}


@media (max-width: 576px){
  .brand-logo-wrap{ height: 52px; padding: 7px 10px; border-radius: 14px; }
  .brand-logo-wrap img{ height: 34px; }
}

.navbar-brand { color: var(--accent-color) !important; }
.navbar-brand:hover { color: var(--accent-hover) !important; }

.navbar-brand.brand-logo,
.navbar-brand.brand-logo:hover{
  color: inherit !important;
}