:root {
    --primary: #0ea5e9;
    --secondary: #06b6d4;
    --primary-dark: #0284c7;
    --success: #22c55e;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-family: var(--font-primary);
    --container-padding: 24px;
    --section-padding: 96px;
    --section-padding-mobile: 64px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 44px rgba(14, 165, 233, 0.16);
    --shadow-xl: 0 24px 60px rgba(14, 165, 233, 0.22);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%)
}

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

body.dark-mode {
    --dark: #e2e8f0;
    --dark-light: #cbd5e1;
    --gray: #94a3b8;
    --gray-light: #64748b;
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(14, 165, 233, 0.3);
    --shadow-xl: 0 20px 60px rgba(14, 165, 233, 0.4)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease
}

body.dark-mode {
    background: var(--bg-white)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 80px);
    max-width: 1200px;
    background: rgba(240, 249, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.25)
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2)
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.dark-mode-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s
}

.dark-mode-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4)
}

body.dark-mode .dark-mode-toggle {
    background: rgba(14, 165, 233, 0.2)
}

.btn-remote-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(14, 165, 233, 0.1);
    border: 1.5px solid rgba(14, 165, 233, 0.3);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap
}

.btn-remote-support i {
    font-size: 16px
}

.btn-remote-support:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transform: scale(1.05)
}

.btn-remote-support.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

body.dark-mode .btn-remote-support {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(56, 189, 248, 0.35);
    color: #38bdf8
}

body.dark-mode .btn-remote-support:hover,
body.dark-mode .btn-remote-support.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.menu-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    color: var(--primary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s
}

.menu-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4)
}

body.dark-mode .menu-toggle {
    background: rgba(14, 165, 233, 0.2)
}

.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease
}

.mobile-menu.active {
    display: block;
    max-height: 300px;
    padding: 16px 0;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    margin-top: 8px
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-menu-link {
    display: block;
    padding: 12px 28px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s
}

.mobile-menu-link:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary)
}

body.dark-mode .mobile-menu-link:hover {
    background: rgba(14, 165, 233, 0.2)
}

body.dark-mode .dark-mode-toggle i::before {
    content: "\f185"
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    font-family: var(--font-heading)
}

.logo-link {
    display: inline-flex;
    align-items: center
}

.logo-img {
    width: 120px;
    object-fit: contain;
    display: block
}

@media (max-width:600px) {
    .logo-img {
        width: 96px;
        height: 96px
    }
}

.logo-img--dark {
    display: none
}

body.dark-mode .logo-img--dark {
    display: block
}

body.dark-mode .logo-img--light {
    display: none
}

.footer .logo-img--light {
    display: none !important
}

.footer .logo-img--dark {
    display: block !important
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative
}

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

.nav-links a:hover::after {
    width: 100%
}

.btn-nav {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: all 0.3s
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4)
}

.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    min-height: 85vh;
    display: flex;
    align-items: center
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out
}

.hero-slide.active {
    opacity: 1
}

.hero-slide--1 {
    background-image: url('https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?auto=format&fit=crop&w=1280&q=75')
}

.hero-slide--2 {
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1280&q=75')
}

.hero-slide--3 {
    background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1280&q=75')
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.82) 0%, rgba(12, 74, 110, 0.75) 100%);
    z-index: 1
}

body.dark-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(12, 74, 110, 0.85) 100%)
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.hero-content {
    max-width: 800px
}

.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #e0f2fe;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px
}

.hero .hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    color: #ffffff
}

.hero .gradient-text {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px
}

.hero .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px
}

.hero .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500
}

.trust-item i {
    color: #38bdf8;
    font-size: 16px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--dark)
}

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

.hero-text {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4)
}

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

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

.hero-stats {
    display: flex;
    gap: 40px
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    font-family: var(--font-heading)
}

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

.hero-image {
    position: relative
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

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

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-accent);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8
}

section {
    padding: var(--section-padding) 0
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 16px
}

.section-title.light {
    color: white
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9)
}

.services {
    background: var(--bg-white)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

body.dark-mode .service-card {
    background: var(--bg-white)
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%)
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary)
}

.service-card-header {
    margin-bottom: 24px
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-heading)
}

.service-list {
    list-style: none;
    margin-bottom: 32px
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray);
    font-size: 15px
}

.service-list i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s
}

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

.service-btn i {
    transition: transform 0.3s
}

.service-btn:hover i {
    transform: translateX(5px)
}

.benefits {
    background: var(--bg-white);
    position: relative;
    overflow: hidden
}

body.dark-mode .benefits {
    background: var(--bg-light)
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--bg-light);
    z-index: 0
}

body.dark-mode .benefits::before {
    background: rgba(14, 165, 233, 0.05)
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1
}

.benefits-content {
    max-width: 500px
}

.benefits-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px
}

.benefits-features {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: var(--font-heading)
}

.feature-text p {
    font-size: 15px;
    color: var(--gray)
}

.benefits-cards {
    display: grid;
    gap: 24px
}

.benefit-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 2px solid transparent
}

body.dark-mode .benefit-card {
    background: var(--bg-white);
    border-color: rgba(14, 165, 233, 0.1)
}

body.dark-mode .benefit-card:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05)
}

.benefit-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg)
}

.benefit-icon-large {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s
}

.benefit-card:hover .benefit-icon-large {
    transform: scale(1.1) rotate(5deg)
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading)
}

.benefit-text {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px
}

.pricing {
    background: var(--bg-white)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    position: relative
}

body.dark-mode .pricing-card {
    background: var(--bg-white)
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    transform: scale(1.05)
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3)
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary)
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 32px
}

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

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-heading)
}

.pricing-description {
    font-size: 14px;
    color: var(--gray)
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light)
}

.price-currency {
    font-size: 18px;
    color: var(--gray);
    font-weight: 600
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin: 0 8px
}

.price-amount.special {
    font-size: 32px
}

.price-period {
    font-size: 16px;
    color: var(--gray)
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray)
}

.pricing-features i {
    color: var(--success);
    font-size: 18px
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s
}

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

.pricing-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05)
}

.pricing-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4)
}

.info-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0
}

.info-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px
}

.info-banner-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.info-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0
}

.info-banner-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.info-banner-content p {
    font-size: 14px;
    opacity: 0.9
}

.info-banner-content a {
    color: white;
    text-decoration: none;
    font-weight: 600
}

.info-banner-content a:hover {
    text-decoration: underline
}

.contact {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.04) 0%, rgba(6, 182, 212, 0.08) 100%);
    position: relative;
    overflow: hidden
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.contact::before {
    top: -40%;
    right: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%)
}

.contact::after {
    bottom: -25%;
    left: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%)
}

.contact-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: stretch;
    z-index: 1
}

.contact-lead {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.12)
}

.contact-lead-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin: 12px 0 24px
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.12), rgba(6, 182, 212, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.18);
    margin-bottom: 16px
}

.contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.18);
    font-size: 18px
}

.contact-highlight-text h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px
}

.contact-highlight-text p {
    font-size: 14px;
    color: var(--gray)
}

.contact-highlight-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.contact-highlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.3)
}

.contact-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray)
}

.contact-note i {
    color: var(--primary)
}

.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    border-radius: 18px;
    padding: 18px 20px;
    text-decoration: none;
    border: 1px solid rgba(14, 165, 233, 0.14);
    box-shadow: 0 10px 32px rgba(14, 165, 233, 0.12);
    transition: all 0.25s ease
}

.contact-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(14, 165, 233, 0.18)
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0
}

.option-icon.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366
}

.option-icon.primary {
    background: rgba(14, 165, 233, 0.12)
}

.option-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.option-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark)
}

.option-sub {
    font-size: 14px;
    color: var(--gray)
}

.option-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary)
}

.contact-option.whatsapp .option-value {
    color: #25d366
}

.option-action {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.25s ease, background 0.25s ease
}

.contact-option:hover .option-action {
    transform: translateX(3px);
    background: var(--gradient-primary);
    color: white
}

.contact-option.whatsapp .option-action {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366
}

.contact-option.whatsapp:hover .option-action {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white
}

.contact-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12)
}

.inline-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px
}

.inline-item i {
    color: var(--primary)
}

.inline-divider {
    width: 1px;
    height: 20px;
    background: rgba(14, 165, 233, 0.2)
}

.trust {
    background: var(--bg-light);
    padding: 60px 0
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px
}

.trust-item {
    text-align: center
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    margin: 0 auto 20px
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.trust-item p {
    font-size: 14px;
    color: var(--gray)
}

.faq {
    background: var(--bg-light)
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px
}

.faq-grid .faq-item {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s
}

.faq-grid .faq-item:hover {
    box-shadow: var(--shadow-lg)
}

.faq-grid .faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.3s
}

.faq-grid .faq-question:hover {
    background: rgba(14, 165, 233, 0.05)
}

.faq-grid .faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-heading);
    flex: 1
}

.faq-grid .faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s
}

.faq-grid .faq-item.active .faq-question i {
    transform: rotate(180deg)
}

.faq-grid .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease
}

.faq-grid .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px
}

.faq-grid .faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
    margin: 0
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
    margin-top: 120px
}

body.dark-mode .footer {
    background: var(--bg-white);
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    color: var(--dark)
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-brand-col {
    max-width: 300px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading)
}

body.dark-mode .footer-logo .logo-text {
    color: var(--dark)
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px
}

body.dark-mode .footer-tagline {
    color: var(--gray)
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px)
}

body.dark-mode .footer-social a {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary)
}

body.dark-mode .footer-social a:hover {
    background: var(--primary);
    color: white
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px
}

body.dark-mode .footer-col h4 {
    color: var(--dark)
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: 10px
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 1)
}

body.dark-mode .footer-col a {
    color: var(--gray)
}

body.dark-mode .footer-col a:hover {
    color: var(--dark)
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1)
}

body.dark-mode .footer-divider {
    background: rgba(14, 165, 233, 0.1)
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center
}

body.dark-mode .footer-bottom {
    color: var(--gray-light)
}

.legal-content {
    padding: 160px 0 var(--section-padding);
    background: var(--bg-light);
    min-height: 100vh
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-md)
}

.legal-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.legal-section {
    margin-bottom: 40px
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-heading)
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    margin-top: 24px
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 20px
}

.legal-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px
}

.legal-section ul li {
    color: var(--gray);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px
}

.legal-section ul li::before {
    content: "â€¢";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 8px
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s
}

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

.legal-back-link {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--bg-light)
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-md)
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn-back i {
    font-size: 18px
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3)
}

@media (max-width:992px) {
    .hero-center {
        text-align: center
    }

    .hero-trust {
        gap: 20px
    }

    .hero-buttons {
        justify-content: center
    }

    .hero-stats {
        justify-content: center
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr
    }

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

    .benefits-content {
        max-width: 100%
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media (max-width:768px) {
    section {
        padding: 40px 0
    }

    .container {
        padding: 0 16px
    }

    html {
        scroll-padding-top: 70px
    }

    .navbar {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15)
    }

    .nav-content {
        padding: 10px 16px
    }

    .logo {
        gap: 8px
    }

    .logo-text {
        font-size: 16px;
        font-weight: 700
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px
    }

    .nav-links {
        display: none
    }

    .nav-actions {
        gap: 8px
    }

    .menu-toggle,
    .dark-mode-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px
    }

    .btn-remote-support span {
        display: none
    }

    .btn-remote-support {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 12px
    }

    .btn-remote-support i {
        font-size: 16px
    }

    .menu-toggle {
        display: flex
    }

    .mobile-menu.active {
        margin-top: 8px;
        padding: 8px 0
    }

    .mobile-menu-links {
        gap: 4px
    }

    .mobile-menu-link {
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 12px
    }

    .hero {
        padding: 110px 0 50px;
        min-height: 0
    }

    .hero-center {
        text-align: center
    }

    .hero .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        gap: 6px;
        margin-bottom: 14px
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 8px;
        letter-spacing: -0.5px
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--primary)
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 24px
    }

    .hero .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-bottom: 24px
    }

    .hero-trust {
        display: none !important
    }

    .btn-hero {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        min-height: 48px;
        justify-content: center
    }

    .btn-hero i {
        font-size: 16px
    }

    .hero-stats {
        gap: 16px;
        margin-top: 24px;
        padding: 16px;
        background: rgba(14, 165, 233, 0.05);
        border-radius: 14px
    }

    .stat-item {
        gap: 10px;
        flex: 1
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px
    }

    .stat-number {
        font-size: 20px;
        font-weight: 800
    }

    .stat-label {
        font-size: 11px
    }

    .hero-image {
        display: none
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 16px
    }

    .section-header {
        margin-bottom: 24px;
        text-align: center
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
        gap: 6px;
        border-radius: 10px;
        margin-bottom: 10px
    }

    .section-badge i {
        font-size: 12px
    }

    .section-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 6px;
        letter-spacing: -0.5px
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        color: var(--gray)
    }

    .services-grid {
        gap: 14px
    }

    .service-card {
        padding: 24px 18px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1)
    }

    .service-card-header {
        margin-bottom: 16px
    }

    .service-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 12px;
        border-radius: 14px
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 6px
    }

    .service-list {
        gap: 10px;
        margin: 16px 0
    }

    .service-list li {
        font-size: 14px;
        line-height: 1.5;
        padding: 10px;
        background: rgba(14, 165, 233, 0.03);
        border-radius: 10px
    }

    .service-list i {
        font-size: 14px
    }

    .service-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
        min-height: 46px
    }

    .featured-badge {
        font-size: 11px;
        padding: 5px 12px;
        border-radius: 8px
    }

    .benefits-wrapper {
        gap: 28px
    }

    .benefits-content {
        text-align: center
    }

    .benefits-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px
    }

    .benefits-features {
        gap: 12px;
        margin-bottom: 24px
    }

    .feature-item {
        gap: 12px;
        padding: 12px;
        background: rgba(14, 165, 233, 0.03);
        border-radius: 12px;
        text-align: left
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0
    }

    .feature-text h4 {
        font-size: 15px;
        margin-bottom: 2px
    }

    .feature-text p {
        font-size: 13px
    }

    .benefit-card {
        padding: 24px 18px;
        border-radius: 16px;
        text-align: center
    }

    .benefit-icon-large {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin: 0 auto 14px;
        border-radius: 14px
    }

    .benefit-title {
        font-size: 18px;
        margin-bottom: 8px
    }

    .benefit-text {
        font-size: 14px;
        line-height: 1.5
    }

    .pricing-grid {
        gap: 16px
    }

    .pricing-card {
        padding: 28px 22px;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(14, 165, 233, 0.12)
    }

    .pricing-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 12px;
        border-radius: 14px
    }

    .pricing-title {
        font-size: 20px;
        margin-bottom: 6px
    }

    .pricing-description {
        font-size: 13px;
        margin-bottom: 16px
    }

    .pricing-price {
        margin: 20px 0
    }

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

    .price-period {
        font-size: 14px
    }

    .price-currency {
        font-size: 16px
    }

    .pricing-features {
        gap: 10px;
        margin: 20px 0
    }

    .pricing-features li {
        font-size: 14px;
        padding: 10px;
        background: rgba(14, 165, 233, 0.03);
        border-radius: 10px
    }

    .pricing-btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 12px;
        min-height: 48px;
        font-weight: 600
    }

    .popular-badge {
        padding: 6px 14px;
        font-size: 11px;
        border-radius: 10px
    }

    .info-banner {
        padding: 28px 0;
        overflow: hidden
    }

    .info-banner .container {
        padding: 0
    }

    .info-banner-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 0 16px;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .info-banner-grid::-webkit-scrollbar {
        display: none
    }

    .info-banner-item {
        flex: 0 0 80%;
        min-width: 80%;
        padding: 16px 14px;
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        background: var(--bg-white);
        border: 2px solid rgba(14, 165, 233, 0.1)
    }

    .info-banner-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
        background: var(--gradient-primary);
        color: white
    }

    .info-banner-content h4 {
        font-size: 13px;
        margin-bottom: 2px;
        color: var(--dark);
        font-weight: 700
    }

    .info-banner-content p,
    .info-banner-content a {
        font-size: 13px;
        color: var(--gray)
    }

    .info-banner-content a {
        color: var(--primary);
        font-weight: 600
    }
}

@media (max-width:768px) {
    .faq-grid {
        gap: 10px
    }

    .faq-item {
        padding: 16px 14px;
        border-radius: 14px
    }

    .faq-question {
        padding-right: 32px
    }

    .faq-question h3 {
        font-size: 14px;
        line-height: 1.4
    }

    .faq-question i {
        font-size: 14px
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.5;
        padding-top: 12px
    }

    .contact-shell {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .contact-lead {
        padding: 20px 16px
    }

    .contact-lead-text {
        font-size: 14px
    }

    .contact-meta {
        gap: 8px
    }

    .meta-pill {
        width: 100%;
        justify-content: flex-start;
        font-size: 12px
    }

    .contact-highlight {
        flex-direction: column;
        align-items: flex-start
    }

    .contact-highlight-btn {
        width: 100%;
        justify-content: center
    }

    .contact-stack {
        gap: 10px
    }

    .contact-option {
        padding: 14px
    }

    .option-title {
        font-size: 15px
    }

    .option-sub {
        font-size: 12px
    }

    .option-value {
        font-size: 13px
    }

    .contact-inline {
        flex-direction: column;
        align-items: flex-start
    }

    .inline-divider {
        width: 100%;
        height: 1px;
        background: rgba(14, 165, 233, 0.15)
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .trust-item {
        padding: 18px 14px;
        border-radius: 14px;
        text-align: center
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 12px;
        border-radius: 12px
    }

    .trust-item h4 {
        font-size: 14px;
        margin-bottom: 4px
    }

    .trust-item p {
        font-size: 13px
    }
}

@media (max-width:768px) {
    .footer {
        padding: 28px 0 16px;
        margin-top: 40px
    }

    .footer-wrapper {
        gap: 12px
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px
    }

    .footer-brand-col {
        text-align: center
    }

    .footer-logo {
        justify-content: center
    }

    .footer-tagline {
        font-size: 12px
    }

    .footer-social {
        justify-content: center
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 8px
    }

    .footer-col a {
        font-size: 12px;
        justify-content: flex-start
    }

    .footer-divider {
        margin: 6px 0
    }

    .footer-bottom {
        text-align: center;
        padding-top: 12px;
        font-size: 11px
    }
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease
}

body.dark-mode .hero-info-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(56, 189, 248, 0.2)
}

.hero-info-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-8px)
}

.hero-info-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block
}

.hero-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark)
}

.hero-info-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

.usps {
    padding: var(--section-padding) 0
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.usp-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease
}

.usp-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.usp-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block
}

.usp-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark)
}

.usp-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

.main-services {
    padding: var(--section-padding) 0;
    background: var(--bg-light)
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.main-service-card {
    background: var(--bg-white);
    padding: 48px 36px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column
}

.main-service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px)
}

.main-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease
}

.main-service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1)
}

.service-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark)
}

.service-intro {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 28px
}

.service-highlights {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1
}

.service-highlights li {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px
}

.service-highlights i {
    color: var(--success);
    font-size: 16px
}

.btn-service {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3)
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4)
}

@media (max-width:768px) {
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .main-service-card {
        padding: 36px 28px
    }

    .service-heading {
        font-size: 18px
    }
}

.service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 12px
}

.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%)
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0 80px 0
}

.contact-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.contact-card .contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease
}

.contact-card:hover .contact-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1)
}

.contact-card .contact-icon.whatsapp {
    color: #25d366
}

.contact-card:hover .contact-icon.whatsapp {
    background: #25d366;
    color: white
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark)
}

.contact-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px
}

.contact-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3)
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4)
}

.contact-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px
}

.meta-badge {
    background: rgba(14, 165, 233, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease
}

.meta-badge:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary)
}

.meta-badge i {
    font-size: 20px
}

@media (max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0 60px 0
    }

    .contact-meta {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.about-main {
    padding: 100px 0 80px
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark)
}

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

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 24px
}

.about-list {
    list-style: none
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark)
}

.about-list i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg)
}

.services-main {
    padding: 100px 0 80px
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark)
}

.services-detail-main {
    padding: 80px 0;
    background: var(--bg-light)
}

.services-hero {
    text-align: center;
    margin-bottom: 80px
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.services-hero p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

.service-category {
    margin-bottom: 100px
}

.category-header {
    text-align: center;
    margin-bottom: 60px
}

.category-header i {
    font-size: 56px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block
}

.category-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading)
}

.category-header p {
    font-size: 16px;
    color: var(--gray)
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 40px 20px;
    background: #F8F9FA;
    border-radius: 16px
}

body.dark-mode .services-list {
    background: var(--bg-white)
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    border-radius: 12px;
    color: white;
    font-size: 24px
}

.item-content {
    flex-grow: 1
}

.item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.item-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3)
}

.btn-details:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4)
}

.btn-details::after {
    content: "â†’"
}

body.dark-mode .service-item {
    background: #1a1a2e;
    border-color: transparent
}

body.dark-mode .service-item:hover {
    border-color: var(--primary)
}

body.dark-mode .item-content h3 {
    color: var(--light)
}

body.dark-mode .item-content p {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .services-hero h1 {
        font-size: 32px
    }

    .services-hero p {
        font-size: 16px
    }

    .category-header h2 {
        font-size: 28px
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .service-item {
        padding: 24px
    }
}

.services-tabs-wrapper {
    margin-top: 60px;
    margin-bottom: 60px
}

.services-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0 20px
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-white);
    color: var(--dark);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family)
}

.tab-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15)
}

.tab-button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3)
}

.tab-button i {
    font-size: 18px
}

.tab-content {
    display: none
}

.tab-content.active {
    display: block
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px
}

.content-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading)
}

.content-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.12)
}

.flipcard {
    height: 360px;
    perspective: 1000px;
    cursor: pointer
}

.flipcard-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d
}

.flipcard:hover .flipcard-inner {
    transform: rotateY(180deg)
}

.flipcard-front,
.flipcard-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(14, 165, 233, 0.18)
}

.flipcard-front {
    background: var(--gradient-primary);
    position: relative
}

.flipcard-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.55))
}

.card-overlay {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1
}

.card-overlay i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #0074A6;
    font-size: 24px
}

.card-front-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1
}

.card-front-content h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3
}

.flipcard-back {
    transform: rotateY(180deg);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px
}

.flipcard-back>i {
    color: var(--primary-dark);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.12);
    margin-bottom: 2px
}

.flipcard-back h3 {
    color: var(--primary-dark);
    font-size: 18px;
    margin: 0;
    line-height: 1.25
}

.flipcard-back ul {
    width: 100%;
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    text-align: left
}

.flipcard-back li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--dark-light);
    font-size: 13px;
    line-height: 1.35;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 10px;
    padding: 8px 10px
}

.flipcard-back li i {
    color: var(--success);
    margin-top: 1px
}

.btn-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--primary-dark);
    border-radius: 10px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease
}

.btn-more:hover {
    background: var(--primary-dark);
    color: #fff
}

body.dark-mode .flipcard-back {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%)
}

body.dark-mode .flipcard-back>i {
    background: rgba(56, 189, 248, 0.14)
}

body.dark-mode .flipcard-back h3 {
    color: #38bdf8
}

body.dark-mode .flipcard-back li {
    color: #d1d5db;
    background: #1f2937;
    border-color: rgba(56, 189, 248, 0.24)
}

body.dark-mode .btn-more {
    border-color: #38bdf8;
    color: #38bdf8
}

body.dark-mode .btn-more:hover {
    background: #38bdf8;
    color: #0b1220
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media (max-width:768px) {
    .services-tabs {
        gap: 12px;
        padding: 0 10px
    }

    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px
    }

    .tab-button i {
        font-size: 16px
    }

    .tab-button span {
        display: none
    }

    .content-header h2 {
        font-size: 28px
    }

    .content-header p {
        font-size: 14px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 30px 10px
    }

    .flipcard {
        height: 340px
    }
}

@media (max-width:480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 16px 8px
    }

    .flipcard {
        height: 320px
    }
}

.contact-main {
    padding: 100px 0 80px
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark)
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent
}

.contact-option:hover {
    border-color: var(--primary);
    transform: translateY(-8px)
}

.contact-option i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px
}

.contact-option {
    color: var(--dark);
    font-weight: 600;
    font-size: 18px
}

.contact-note {
    background: rgba(14, 165, 233, 0.1);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--dark);
    font-size: 15px
}

.contact-note i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0
}

.remote-support-main {
    padding: 100px 0 80px
}

.remote-support-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark)
}

.remote-support-desc {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.remote-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.remote-support-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease
}

.remote-support-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.remote-support-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.remote-support-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-light)
}

.remote-support-card-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0
}

.remote-support-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6
}

.remote-support-downloads {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-3px)
}

.lang-switcher {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px
}

.lang-switcher:hover {
    background: var(--primary);
    color: white
}

body.dark-mode .lang-switcher {
    background: var(--dark);
    border-color: var(--primary);
    color: var(--primary)
}

body.dark-mode .lang-switcher:hover {
    background: var(--primary);
    color: white
}

@media (max-width:768px) {
    .hero-info-cards {
        grid-template-columns: 1fr;
        margin-bottom: 28px
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

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

    .about-content,
    .remote-support-grid,
    .contact-options {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .about-title,
    .services-title,
    .contact-title,
    .remote-support-title {
        font-size: 22px;
        margin-bottom: 28px
    }

    .about-main,
    .services-main,
    .contact-main,
    .remote-support-main {
        padding: 40px 0 28px
    }

    .remote-support-card,
    .contact-option {
        padding: 22px 16px
    }
}

@media (max-width:480px) {

    .usp-card,
    .hero-info-card {
        padding: 18px 12px
    }

    .about-list li,
    .about-text p,
    .remote-support-desc {
        font-size: 14px
    }

    .btn-download {
        font-size: 13px;
        padding: 10px 16px;
        flex: 1
    }

    .remote-support-downloads {
        flex-direction: column
    }

    .contact-note {
        font-size: 13px;
        padding: 16px
    }
}

.service-detail-main {
    padding: 80px 0 60px;
    background: var(--bg-light);
    min-height: 100vh
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 60px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative
}

.service-hero-back {
    position: absolute;
    top: 24px;
    left: 24px
}

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

.service-hero-back a:hover {
    gap: 12px
}

.service-hero-content {
    padding-top: 40px
}

.service-category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px
}

.service-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading)
}

.service-hero p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7
}

.service-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 120px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3
}

.service-description {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md)
}

.description-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    font-family: var(--font-heading)
}

.description-wrapper p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px
}

.description-wrapper p:last-child {
    margin-bottom: 0
}

.service-section {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md)
}

.section-header-small {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px
}

.section-header-small i {
    font-size: 32px;
    color: var(--primary)
}

.section-header-small h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-heading)
}

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

.problem-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
    cursor: default
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    border-radius: 12px;
    color: white;
    font-size: 24px;
    margin-bottom: 16px
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.problem-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

.solutions-timeline {
    display: grid;
    gap: 32px
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7
}

.faq-list {
    display: grid;
    gap: 16px
}

.faq-list .faq-item {
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s
}

.faq-list .faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15)
}

.faq-list .faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s
}

.faq-list .faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white
}

.faq-list .faq-question i {
    transition: transform 0.3s
}

.faq-list .faq-item.active .faq-question i {
    transform: rotate(180deg)
}

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

.faq-list .faq-item.active .faq-answer {
    max-height: 500px
}

.faq-list .faq-answer p {
    padding: 24px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0
}

.service-cta {
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px
}

.service-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-heading)
}

.service-cta p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 32px
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2)
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3)
}

body.dark-mode .service-hero {
    background: #1a1a2e
}

body.dark-mode .service-hero h1 {
    color: var(--light)
}

body.dark-mode .service-description {
    background: #1a1a2e
}

body.dark-mode .description-wrapper h2 {
    color: var(--light)
}

body.dark-mode .service-section {
    background: #1a1a2e
}

body.dark-mode .section-header-small h2 {
    color: var(--light)
}

body.dark-mode .problem-card {
    background: #0f0f1e
}

body.dark-mode .problem-card h3 {
    color: var(--light)
}

body.dark-mode .timeline-content h3 {
    color: var(--light)
}

body.dark-mode .faq-question {
    background: #0f0f1e;
    color: var(--light)
}

body.dark-mode .faq-item {
    border-color: #0f0f1e
}

@media (max-width:768px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 18px
    }

    .service-hero h1 {
        font-size: 26px
    }

    .service-hero-icon {
        font-size: 64px;
        order: -1
    }

    .service-description,
    .service-section {
        padding: 24px 18px
    }

    .section-header-small h2 {
        font-size: 20px
    }

    .timeline-item {
        grid-template-columns: auto 1fr
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px
    }

    .service-cta {
        padding: 40px 24px
    }

    .service-cta h2 {
        font-size: 26px
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }
}

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    padding-top: 180px;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(14, 165, 233, 0.05) 100%);
    overflow: hidden
}

body.dark-mode .page-hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(14, 165, 233, 0.1) 100%)
}

.page-hero .hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center
}

.page-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark)
}

.page-hero .hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

body.dark-mode .page-hero .hero-title {
    color: var(--dark)
}

body.dark-mode .page-hero .hero-subtitle {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .page-hero {
        padding: 80px 0 40px;
        padding-top: 110px
    }

    .page-hero .hero-title {
        font-size: 28px
    }

    .page-hero .hero-subtitle {
        font-size: 14px
    }
}

.page-section {
    padding: var(--section-padding) 0
}

.page-section.alt-bg {
    background: var(--bg-light)
}

body.dark-mode .page-section.alt-bg {
    background: var(--bg-white)
}

@media (max-width:768px) {
    .page-section {
        padding: var(--section-padding-mobile) 0
    }
}

.section-header {
    margin-bottom: 60px
}

.section-header.text-center {
    text-align: center
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px
}

body.dark-mode .section-badge {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary-light)
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark)
}

body.dark-mode .section-title {
    color: var(--dark)
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

body.dark-mode .section-subtitle {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .section-header {
        margin-bottom: 28px
    }

    .section-title {
        font-size: 22px
    }

    .section-subtitle {
        font-size: 14px
    }
}

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

.about-text {
    gap: 24px
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px
}

body.dark-mode .about-text p {
    color: var(--gray-light)
}

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(14, 165, 233, 0.1)
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px
}

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

body.dark-mode .stat-label {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 14px
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px
}

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md)
}

body.dark-mode .value-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md)
}

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

.value-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark)
}

body.dark-mode .value-card h3 {
    color: var(--dark)
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

body.dark-mode .value-card p {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .value-card {
        padding: 22px 16px
    }

    .value-icon {
        font-size: 30px
    }
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px
}

.showcase-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-align: center
}

body.dark-mode .showcase-item {
    background: var(--dark-light);
    box-shadow: var(--shadow-md)
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.showcase-icon {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px
}

.showcase-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark)
}

body.dark-mode .showcase-item h3 {
    color: var(--dark)
}

.showcase-item p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6
}

body.dark-mode .showcase-item p {
    color: var(--gray-light)
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease
}

.btn-link:hover {
    gap: 12px
}

@media (max-width:768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    margin-top: 50px
}

.service-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden
}

body.dark-mode .service-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md)
}

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

.service-card-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    transition: color 0.3s ease
}

body.dark-mode .service-card h3 {
    color: var(--dark)
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5
}

body.dark-mode .service-card p {
    color: var(--gray-light)
}

.service-arrow {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary)
}

.service-card:hover .service-arrow {
    opacity: 1
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }

    .service-card {
        padding: 16px 12px
    }

    .service-card-icon {
        font-size: 28px
    }

    .service-card h3 {
        font-size: 13px
    }

    .service-card p {
        display: none
    }
}

@media (max-width:480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .service-card {
        padding: 14px 10px
    }

    .service-card-icon {
        font-size: 24px
    }

    .service-card h3 {
        font-size: 11px
    }
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0
}

.method-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md)
}

body.dark-mode .method-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md)
}

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

.method-icon {
    font-size: 52px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-weight: 600
}

.method-icon.phone-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%)
}

.method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #1ea953 100%)
}

.method-icon.email-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%)
}

.method-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark)
}

body.dark-mode .method-card h3 {
    color: var(--dark)
}

.method-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6
}

body.dark-mode .method-card p {
    color: var(--gray-light)
}

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

.contact-link:hover {
    gap: 12px
}

.method-hours {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 10px !important
}

body.dark-mode .method-hours {
    color: var(--gray)
}

@media (max-width:768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px
}

.info-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm)
}

body.dark-mode .info-card {
    background: var(--dark-light)
}

.info-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark)
}

body.dark-mode .info-card h3 {
    color: var(--dark)
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px
}

body.dark-mode .info-content p {
    color: var(--gray-light)
}

.info-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none
}

.text-muted {
    color: var(--gray-light) !important;
    font-size: 12px !important
}

@media (max-width:768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.form-wrapper {
    max-width: 600px;
    margin: 50px auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md)
}

body.dark-mode .form-wrapper {
    background: var(--dark-light)
}

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

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

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

body.dark-mode .form-group label {
    color: var(--dark)
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--dark);
    background: var(--bg-white);
    transition: border-color 0.3s ease
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: var(--dark);
    color: var(--dark-light);
    border-color: rgba(14, 165, 233, 0.3)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1)
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px
}

.form-checkbox a {
    color: var(--primary)
}

@media (max-width:768px) {
    .form-wrapper {
        padding: 22px 16px
    }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px
}

.support-tool {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md)
}

body.dark-mode .support-tool {
    background: var(--dark-light);
    box-shadow: var(--shadow-md)
}

.support-tool:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.tool-icon {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px
}

.tool-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.support-tool h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark)
}

body.dark-mode .support-tool h3 {
    color: var(--dark)
}

.support-tool p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6
}

body.dark-mode .support-tool p {
    color: var(--gray-light)
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    text-align: left
}

.tool-features span {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px
}

.tool-features span i {
    color: var(--success);
    font-weight: bold
}

body.dark-mode .tool-features span {
    color: var(--gray-light)
}

.tool-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.btn-secondary {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

@media (max-width:768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .tool-buttons {
        flex-direction: column
    }
}

.support-instructions {
    margin-top: 50px
}

.instruction-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary)
}

body.dark-mode .instruction-box {
    background: var(--dark-light)
}

.instruction-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px
}

body.dark-mode .instruction-box h4 {
    color: var(--dark)
}

.instruction-box ol {
    margin-left: 20px;
    margin-bottom: 16px
}

.instruction-box li {
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 15px
}

body.dark-mode .instruction-box li {
    color: var(--gray-light)
}

.security-note {
    background: rgba(16, 185, 129, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--success);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px
}

.step-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative
}

body.dark-mode .step-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md)
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700
}

.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin: 30px 0 20px
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark)
}

body.dark-mode .step-card h3 {
    color: var(--dark)
}

.step-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6
}

body.dark-mode .step-card p {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .step-card {
        padding: 22px 16px
    }
}

@media (max-width:480px) {
    .steps-grid {
        grid-template-columns: 1fr
    }
}

.faq-container {
    max-width: 800px;
    margin: 50px auto
}

.faq-container .faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease
}

body.dark-mode .faq-container .faq-item {
    background: var(--dark-light);
    border-color: rgba(14, 165, 233, 0.2)
}

.faq-toggle {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease
}

body.dark-mode .faq-toggle {
    color: var(--dark)
}

.faq-toggle:hover {
    background: rgba(14, 165, 233, 0.05)
}

body.dark-mode .faq-toggle:hover {
    background: rgba(14, 165, 233, 0.1)
}

.faq-toggle i {
    transition: transform 0.3s ease;
    color: var(--primary)
}

.faq-container .faq-item.active .faq-toggle {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary)
}

body.dark-mode .faq-container .faq-item.active .faq-toggle {
    background: rgba(14, 165, 233, 0.15)
}

.faq-container .faq-item.active .faq-toggle i {
    transform: rotate(180deg)
}

.faq-container .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(14, 165, 233, 0.1)
}

.faq-container .faq-item.active .faq-content {
    max-height: 500px
}

.faq-container .faq-content p {
    padding: 20px 24px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0
}

body.dark-mode .faq-container .faq-content p {
    color: var(--gray-light)
}

@media (max-width:768px) {
    .faq-container {
        margin: 28px auto
    }

    .faq-toggle {
        padding: 12px 16px;
        font-size: 14px
    }

    .faq-content p {
        padding: 12px 16px
    }
}

.cta-section {
    text-align: center;
    padding: var(--section-padding) 0
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark)
}

body.dark-mode .cta-content h2 {
    color: var(--dark)
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px
}

body.dark-mode .cta-content p {
    color: var(--gray-light)
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

@media (max-width:768px) {
    .cta-section {
        padding: var(--section-padding-mobile) 0
    }

    .cta-content h2 {
        font-size: 22px
    }

    .cta-content p {
        font-size: 14px
    }

    .btn-large {
        padding: 10px 20px;
        font-size: 13px
    }
}

.services-content .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch
}

.services-content .flipcard {
    width: 100%;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    position: relative;
    cursor: pointer
}

.services-content .flipcard-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform
}

.services-content .flipcard:hover .flipcard-inner {
    transform: rotateY(180deg)
}

.services-content .flipcard-front,
.services-content .flipcard-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 14px;
    overflow: hidden
}

.services-content .flipcard-front {
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.15);
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 12px
}

.services-content .flipcard-front::before {
    display: none
}

.services-content .card-overlay {
    position: static
}

.services-content .card-overlay i {
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    color: #1e90ff;
    font-size: clamp(2rem, 2.8vw, 2.8rem)
}

.services-content .card-front-content {
    position: static;
    left: auto;
    right: auto;
    bottom: auto
}

.services-content .card-front-content h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.35;
    text-align: center
}

.services-content .flipcard-back {
    transform: rotateY(180deg);
    background: #1e90ff;
    color: #ffffff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px
}

.services-content .flipcard-back>i {
    display: none
}

.services-content .flipcard-back h3 {
    color: #ffffff;
    margin: 0;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.35
}

.services-content .flipcard-back ul {
    list-style: none;
    margin: auto 0 0;
    padding: 0
}

.services-content .flipcard-back li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ffffff;
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    line-height: 1.35;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    padding: 6px 10px
}

.services-content .flipcard-back li i {
    color: #ffffff;
    margin-top: 1px
}

.services-content .btn-more {
    margin-top: 10px;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem
}

.services-content .btn-more:hover {
    background: #ffffff;
    color: #1e90ff
}

@media (max-width:1024px) {
    .services-content .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem
    }
}

@media (max-width:640px) {
    .services-content .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem
    }
}

body {
    background: var(--bg-light);
    color: var(--dark)
}

.nav-links a.active {
    color: var(--primary)
}

.nav-links a.active::after {
    width: 100%
}

.hero,
.page-hero {
    border-bottom: 1px solid rgba(14, 165, 233, 0.08)
}

.main-service-card,
.service-card,
.service-item,
.value-card,
.showcase-item,
.method-card,
.info-card,
.support-tool,
.step-card,
.pricing-card,
.benefit-card,
.faq-item,
.contact-card,
.contact-option,
.form-wrapper,
.remote-support-card,
.service-description,
.service-section,
.legal-wrapper {
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: var(--shadow-md)
}

.main-service-card:hover,
.service-card:hover,
.service-item:hover,
.value-card:hover,
.showcase-item:hover,
.method-card:hover,
.info-card:hover,
.support-tool:hover,
.step-card:hover,
.pricing-card:hover,
.benefit-card:hover,
.contact-card:hover,
.contact-option:hover,
.remote-support-card:hover {
    box-shadow: var(--shadow-lg)
}

.section-title,
.hero-title,
.services-hero h1,
.legal-title,
.about-title,
.services-title,
.contact-title,
.remote-support-title {
    letter-spacing: -0.02em
}

.btn-primary,
.btn-service,
.btn-hero,
.btn-download,
.service-btn,
.pricing-btn.primary,
.contact-link {
    border-radius: 12px
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 10px
}

.flipcard-front,
.flipcard-back {
    border: 1px solid rgba(14, 165, 233, 0.15)
}

body.dark-mode .main-service-card,
body.dark-mode .service-card,
body.dark-mode .service-item,
body.dark-mode .value-card,
body.dark-mode .showcase-item,
body.dark-mode .method-card,
body.dark-mode .info-card,
body.dark-mode .support-tool,
body.dark-mode .step-card,
body.dark-mode .pricing-card,
body.dark-mode .benefit-card,
body.dark-mode .faq-item,
body.dark-mode .contact-card,
body.dark-mode .contact-option,
body.dark-mode .form-wrapper,
body.dark-mode .remote-support-card,
body.dark-mode .service-description,
body.dark-mode .service-section,
body.dark-mode .legal-wrapper,
body.dark-mode .flipcard-front,
body.dark-mode .flipcard-back {
    border-color: rgba(56, 189, 248, 0.2)
}

.services-content .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.services-content .services-grid .flipcard {
    width: 100%;
    max-width: 360px
}

@media (max-width:1024px) {
    .services-content .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:640px) {
    .services-content .services-grid {
        grid-template-columns: 1fr
    }
}

.services-content .flipcard-back {
    position: relative;
    background: linear-gradient(155deg, #082f49, #0284c7)
}

.services-content .flipcard-back>i,
.services-content .flipcard-back h3,
.services-content .flipcard-back li {
    color: #f8fafc
}

.services-content .flipcard-back li i {
    color: #86efac
}

.services-content .flipcard-back .btn-more {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06)
}

.services-content .flipcard-back .btn-more:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff
}

body.dark-mode .services-content .flipcard-back {
    background: linear-gradient(155deg, #020617, #0369a1)
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.cookie-banner.hidden {
    display: none
}

.cookie-banner__content {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.cookie-banner__content p {
    margin: 0;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.5
}

.cookie-banner__content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none
}

.cookie-banner__content a:hover {
    text-decoration: underline
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease
}

.cookie-btn--secondary {
    background: rgba(14, 165, 233, 0.12);
    color: var(--primary-dark)
}

.cookie-btn--primary {
    background: var(--gradient-primary);
    color: #ffffff
}

.cookie-btn:hover {
    transform: translateY(-1px)
}

body.dark-mode .cookie-banner {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(56, 189, 248, 0.35)
}

body.dark-mode .cookie-banner__content p {
    color: var(--dark)
}

body.dark-mode .cookie-btn--secondary {
    background: rgba(56, 189, 248, 0.18);
    color: #bae6fd
}

@media (max-width:768px) {
    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch
    }

    .cookie-banner__actions {
        width: 100%
    }

    .cookie-btn {
        flex: 1
    }
}

body.dark-mode {
    background: var(--bg-light);
    color: var(--dark)
}

body.dark-mode .legal-content {
    background: var(--bg-light)
}

body.dark-mode .legal-wrapper,
body.dark-mode .faq-item,
body.dark-mode .instruction-box,
body.dark-mode .contact-option,
body.dark-mode .meta-badge {
    background: var(--bg-white)
}

body.dark-mode .legal-section h2,
body.dark-mode .legal-section h3,
body.dark-mode .legal-section h4,
body.dark-mode .service-heading,
body.dark-mode .service-hero-back a,
body.dark-mode .content-header h2,
body.dark-mode .tab-button {
    color: var(--dark)
}

body.dark-mode .legal-section p,
body.dark-mode .legal-section ul li,
body.dark-mode .faq-answer p,
body.dark-mode .service-intro,
body.dark-mode .service-highlights li,
body.dark-mode .service-list li,
body.dark-mode .contact-note,
body.dark-mode .contact-meta,
body.dark-mode .text-muted {
    color: var(--gray)
}

body.dark-mode .legal-back-link {
    border-top-color: rgba(148, 163, 184, 0.22)
}

body.dark-mode .meta-badge,
body.dark-mode .service-category-badge,
body.dark-mode .tab-button,
body.dark-mode .faq-question {
    border-color: rgba(56, 189, 248, 0.25)
}

body.dark-mode .meta-badge,
body.dark-mode .service-category-badge,
body.dark-mode .contact-note {
    background: rgba(14, 165, 233, 0.14)
}

body.dark-mode .tab-button:hover,
body.dark-mode .faq-question:hover {
    background: rgba(14, 165, 233, 0.16);
    color: var(--dark)
}

body.dark-mode .tab-button.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent
}

body.dark-mode .services-content .flipcard-front {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.25)
}

body.dark-mode .services-content .card-front-content h3 {
    color: var(--dark)
}

body.dark-mode .services-content .card-overlay i {
    color: #38bdf8
}

body.dark-mode .btn-secondary,
body.dark-mode .btn-back,
body.dark-mode .btn-cta,
body.dark-mode .btn-details,
body.dark-mode .btn-primary,
body.dark-mode .btn-service,
body.dark-mode .btn-download {
    color: #ffffff
}

body.dark-mode .btn-link,
body.dark-mode .legal-section a,
body.dark-mode .contact-link {
    color: #38bdf8
}

body.dark-mode .services-detail-main {
    background: var(--bg-light)
}

body.dark-mode .services-hero p {
    color: var(--gray)
}

body.dark-mode .contact {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%)
}

body.dark-mode .contact::before {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%)
}

body.dark-mode .contact::after {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%)
}

body.dark-mode .contact-lead {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3)
}

body.dark-mode .contact-highlight {
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.05));
    border-color: rgba(56, 189, 248, 0.2)
}

body.dark-mode .meta-pill {
    background: rgba(14, 165, 233, 0.12);
    color: #38bdf8
}

body.dark-mode .content-header p {
    color: var(--gray)
}

body.dark-mode .info-banner {
    background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%)
}

body.dark-mode .services {
    background: var(--bg-light)
}

body.dark-mode .service-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.2)
}

body.dark-mode .service-card.featured {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(56, 189, 248, 0.4)
}

body.dark-mode .service-card h3 {
    color: var(--dark)
}

body.dark-mode .service-card p {
    color: var(--gray)
}

body.dark-mode .pricing-card h3,
body.dark-mode .pricing-card .price {
    color: var(--dark)
}

body.dark-mode .pricing-card p,
body.dark-mode .pricing-card li {
    color: var(--gray)
}

body.dark-mode .faq-question {
    color: var(--dark)
}

body.dark-mode .faq-answer p {
    color: var(--gray)
}

body.dark-mode .support-tool h3 {
    color: var(--dark)
}

body.dark-mode .support-tool p {
    color: var(--gray)
}

body.dark-mode .remote-support-card {
    background: var(--bg-white)
}

body.dark-mode .synergy-badge {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8
}

body.dark-mode .step-card {
    background: var(--bg-white)
}

body.dark-mode .step-card h3 {
    color: var(--dark)
}

body.dark-mode .step-card p {
    color: var(--gray)
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: var(--gray-light)
}

body.dark-mode .mobile-menu {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(56, 189, 248, 0.15)
}

body.dark-mode .mobile-menu-link {
    color: var(--dark)
}

body.dark-mode .mobile-menu-link:hover {
    background: rgba(14, 165, 233, 0.12);
    color: #38bdf8
}

.automation-info {
    margin-top: 60px;
    margin-bottom: 40px
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.automation-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease
}

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

.automation-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px
}

.automation-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: var(--font-heading)
}

.automation-card>p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px
}

.automation-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.automation-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 14px;
    background: rgba(14, 165, 233, 0.06);
    border-radius: 12px;
    transition: background 0.2s
}

.automation-benefits li:hover {
    background: rgba(14, 165, 233, 0.12)
}

.automation-benefits li i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0
}

.automation-cta {
    margin-bottom: 60px
}

.automation-cta-inner {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg)
}

.automation-cta-inner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-heading)
}

.automation-cta-inner p {
    font-size: 16px;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.automation-cta-inner .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary);
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease
}

.automation-cta-inner .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

body.dark-mode .automation-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.2)
}

body.dark-mode .automation-card-icon {
    background: rgba(14, 165, 233, 0.15)
}

body.dark-mode .automation-benefits li {
    background: rgba(14, 165, 233, 0.08);
    color: var(--dark)
}

body.dark-mode .automation-benefits li:hover {
    background: rgba(14, 165, 233, 0.16)
}

@media (max-width:768px) {
    .automation-grid {
        grid-template-columns: 1fr
    }

    .automation-cta-inner {
        padding: 28px 18px
    }

    .automation-cta-inner h2 {
        font-size: 20px
    }
}

.reviews-summary {
    text-align: center;
    margin-bottom: 40px
}

.reviews-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(14, 165, 233, 0.12)
}

.score-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1
}

.score-stars {
    display: flex;
    gap: 4px;
    font-size: 20px;
    color: #facc15
}

.score-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.review-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0
}

.review-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #facc15;
    font-size: 13px
}

.review-google-icon {
    margin-left: auto;
    font-size: 22px;
    color: var(--gray-light);
    opacity: 0.5
}

.review-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 12px;
    font-style: italic
}

.review-date {
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 500
}

body.dark-mode .review-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .reviews-score {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.2)
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.quick-info-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease
}

.quick-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.25)
}

.quick-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 18px
}

.quick-info-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-heading)
}

.quick-info-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

body.dark-mode .quick-info-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .quick-info-icon {
    background: rgba(14, 165, 233, 0.15)
}

.contact-faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-faq .faq-item {
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    overflow: hidden;
    transition: all 0.3s ease
}

.contact-faq .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-primary);
    text-align: left;
    transition: color 0.2s
}

.contact-faq .faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 14px;
    flex-shrink: 0
}

.contact-faq .faq-item.active .faq-question i {
    transform: rotate(180deg)
}

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

.contact-faq .faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.7
}

body.dark-mode .contact-faq .faq-item {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .contact-faq .faq-question {
    color: var(--dark)
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-cta-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff !important;
    box-shadow: none
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff
}

.fab-button {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: fab-pulse 2s ease-in-out infinite
}

.fab-button:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55)
}

@keyframes fab-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4)
    }

    50% {
        box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6)
    }
}

@media (max-width:1024px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .reviews-grid {
        grid-template-columns: 1fr
    }

    .quick-info-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .fab-button {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 16px;
        right: 16px
    }

    .pricing-card.featured {
        transform: none
    }

    .hero-stats {
        flex-wrap: wrap
    }
}

.flipcard.flipped .flipcard-inner {
    transform: rotateY(180deg)
}

@media (hover:none) and (pointer:coarse) {
    .flipcard:hover .flipcard-inner {
        transform: none
    }

    .flipcard.flipped .flipcard-inner {
        transform: rotateY(180deg)
    }
}

.service-card-header {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.service-card-header i {
    font-size: 56px;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease
}

.main-service-card:hover .service-card-header i {
    transform: scale(1.15) rotate(5deg)
}

.service-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-size: 30px 30px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px)
}

.service-card-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -60px;
    right: -60px
}

.service-card-header--it {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%)
}

.service-card-header--automation {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%)
}

.service-card-header--consulting {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%)
}

.visual-showcase {
    padding: var(--section-padding) 0;
    background: var(--bg-white)
}

.visual-showcase .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.showcase-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease
}

.showcase-image-wrapper:hover img {
    transform: scale(1.03)
}

.showcase-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    box-shadow: var(--shadow-md)
}

body.dark-mode .showcase-badge {
    background: rgba(30, 41, 59, 0.9)
}

.showcase-badge i {
    color: var(--success);
    font-size: 18px
}

.showcase-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-heading)
}

.showcase-text p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500
}

.showcase-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0
}

.cta-visual-banner {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden
}

.cta-visual-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%)
}

.cta-visual-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -150px;
    left: -100px
}

.cta-visual-content {
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-visual-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-heading)
}

.cta-visual-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.cta-visual-banner .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15)
}

.cta-visual-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2)
}

@media (max-width:768px) {
    .service-card-header {
        height: 120px
    }

    .service-card-header i {
        font-size: 36px
    }

    .visual-showcase .showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .showcase-image-wrapper img {
        height: 220px
    }

    .showcase-text h2 {
        font-size: 22px
    }

    .showcase-text p {
        font-size: 14px;
        margin-bottom: 20px
    }

    .showcase-features {
        gap: 10px
    }

    .showcase-feature {
        font-size: 13px;
        gap: 10px
    }

    .showcase-feature i {
        width: 34px;
        height: 34px;
        font-size: 14px
    }

    .showcase-badge {
        padding: 8px 14px;
        font-size: 12px;
        bottom: 12px;
        left: 12px
    }

    .cta-visual-banner {
        padding: 40px 0
    }

    .cta-visual-content h2 {
        font-size: 22px
    }

    .cta-visual-content p {
        font-size: 14px;
        margin-bottom: 24px
    }
}

.page-hero--image {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative
}

.page-hero--support {
    --hero-bg: url('https://images.unsplash.com/photo-1600267185393-e158a98703de?auto=format&fit=crop&w=1920&q=80')
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 249, 255, 0.85) 100%);
    z-index: 1
}

body.dark-mode .page-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.88) 100%)
}

.page-hero--image .hero-content {
    z-index: 2
}

.services-hero--image {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 80px;
    border-radius: 20px;
    overflow: hidden
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 249, 255, 0.85) 100%);
    z-index: 0
}

body.dark-mode .services-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.88) 100%)
}

.services-hero--image h1,
.services-hero--image p {
    position: relative;
    z-index: 1
}

.service-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.5s ease
}

.service-hero-image img:hover {
    opacity: 1;
    transform: scale(1.03)
}

@media (max-width:768px) {
    .service-hero-image {
        order: -1;
        height: 180px
    }

    .service-hero-image img {
        height: 180px
    }
}

.nav-dropdown {
    position: relative
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px
}

.dropdown-trigger i {
    transition: transform 0.3s ease;
    font-size: 10px
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: 14px;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none
}

body.dark-mode .dropdown-menu {
    background: var(--dark-light);
    border-color: rgba(14, 165, 233, 0.2)
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap
}

body.dark-mode .dropdown-menu li a {
    color: var(--gray-light)
}

.dropdown-menu li a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary)
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 14px
}

.mobile-submenu-parent {
    position: relative
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-submenu-trigger i {
    transition: transform 0.3s ease
}

.mobile-submenu-parent.open .mobile-submenu-trigger i {
    transform: rotate(180deg)
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding: 4px 0 4px 16px
}

.mobile-submenu-parent.open .mobile-submenu {
    display: block
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--gray);
    transition: color 0.2s ease
}

.mobile-submenu li a:hover {
    color: var(--primary)
}

.mobile-submenu li a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 13px
}

@media (max-width:900px) {
    .nav-links {
        display: none
    }
}

.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.hero-contact-info a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease
}

.hero-contact-info a:hover {
    color: #fff
}

.hero-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px
}

@media (max-width:768px) {
    .hero-contact-info {
        gap: 8px;
        margin-top: 12px
    }

    .hero-contact-info a {
        font-size: 12px
    }
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease
}

.about-image-wrapper:hover img {
    transform: scale(1.03)
}

.about-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000
}

.about-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    box-shadow: var(--shadow-md)
}

body.dark-mode .about-image-badge {
    background: rgba(30, 41, 59, 0.9);
    color: var(--gray-light)
}

.about-image-badge i {
    color: var(--primary);
    font-size: 16px
}

.about-text-content .section-title {
    margin-bottom: 20px
}

.about-full-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px
}

body.dark-mode .about-full-text p {
    color: var(--gray-light)
}

.about-compact-text {
    display: none
}

.about-compact-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px
}

.about-highlights {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark)
}

body.dark-mode .about-highlights li {
    color: var(--gray-light)
}

.about-highlights li i {
    color: var(--primary);
    font-size: 14px
}

@media (max-width:768px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .about-image-wrapper img {
        height: 260px
    }

    .about-full-text {
        display: none
    }

    .about-compact-text {
        display: block
    }
}

.projects-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px
}

.projects-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: 16px
}

.projects-track {
    display: flex;
    transition: transform 0.5s ease
}

.project-slide {
    flex: 0 0 33.333%;
    padding: 0 8px;
    box-sizing: border-box
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease
}

.project-card:hover img {
    transform: scale(1.05)
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff
}

.project-overlay h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading)
}

.project-service-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    font-family: var(--font-heading)
}

.project-service-link:hover {
    color: #7dd3fc;
    text-decoration: underline
}

.project-slide {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease
}

.project-slide.center-focus .project-card {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 2
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.15);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    z-index: 2
}

body.dark-mode .carousel-arrow {
    background: var(--dark-light);
    color: var(--gray-light)
}

.carousel-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2)
}

@media (max-width:1024px) {
    .project-slide {
        flex: 0 0 50%
    }
}

@media (max-width:768px) {
    .project-slide {
        flex: 0 0 85%
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px
    }

    .project-overlay h3 {
        font-size: 14px
    }
}

.service-item {
    position: relative
}

.service-item .flipcard-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    aspect-ratio: 1 / 1;
    perspective: 1000px
}

.service-item .flipcard-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform
}

.service-item .flipcard-link:hover .flipcard-inner {
    transform: rotateY(180deg)
}

.service-item .flipcard-front,
.service-item .flipcard-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px
}

.service-item .flipcard-front {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff
}

.service-item .flipcard-front .card-overlay {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.9
}

.service-item .flipcard-front .card-front-content h3 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading)
}

.service-item .flipcard-back {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.12);
    transform: rotateY(180deg);
    padding: 20px 16px;
    justify-content: flex-start;
    padding-top: 24px;
    gap: 8px
}

body.dark-mode .service-item .flipcard-back {
    background: var(--dark-light)
}

.service-item .flipcard-back>i {
    font-size: 1.8rem;
    color: var(--primary)
}

.service-item .flipcard-back h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-heading)
}

body.dark-mode .service-item .flipcard-back h3 {
    color: var(--gray-light)
}

.service-item .flipcard-back ul {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%
}

.service-item .flipcard-back ul li {
    font-size: 0.8rem;
    color: var(--gray);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px
}

body.dark-mode .service-item .flipcard-back ul li {
    color: var(--gray-light)
}

.service-item .flipcard-back ul li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.7rem
}

.service-card-static {
    display: none
}

@media (max-width:768px) {
    .service-item .flipcard-link {
        display: none
    }

    .service-card-static {
        display: flex;
        flex-direction: column;
        background: var(--bg-white);
        border: 1px solid rgba(14, 165, 233, 0.12);
        border-radius: 14px;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease
    }

    body.dark-mode .service-card-static {
        background: var(--dark-light)
    }

    .static-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--primary);
        margin-bottom: 12px
    }

    .service-card-static h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 6px;
        font-family: var(--font-heading)
    }

    body.dark-mode .service-card-static h3 {
        color: var(--gray-light)
    }

    .service-card-static p {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.6;
        margin-bottom: 12px
    }

    body.dark-mode .service-card-static p {
        color: var(--gray-light)
    }

    .btn-service-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
        transition: gap 0.3s ease
    }

    .btn-service-link:hover {
        gap: 10px
    }

    .services-content .services-grid {
        grid-template-columns: 1fr !important;
        gap: 12px
    }
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.contact-options-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-card-new {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease
}

body.dark-mode .contact-card-new {
    background: var(--dark-light)
}

.contact-card-new:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px)
}

.contact-icon-new {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0
}

.contact-card-new h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: var(--font-heading)
}

body.dark-mode .contact-card-new h3 {
    color: var(--gray-light)
}

.contact-card-new p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

body.dark-mode .contact-card-new p {
    color: var(--gray-light)
}

.contact-card-new .contact-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 8px
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-1px)
}

.text-small {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500
}

.contact-form-col {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg)
}

body.dark-mode .contact-form-col {
    background: var(--dark-light)
}

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

body.dark-mode .form-title {
    color: var(--gray-light)
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column
}

.contact-form .form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 14px
}

body.dark-mode .contact-form .form-group label {
    color: var(--gray-light)
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--dark);
    background: var(--bg-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease
}

body.dark-mode .contact-form .form-group input,
body.dark-mode .contact-form .form-group textarea {
    background: var(--bg-white);
    color: var(--gray-light);
    border-color: rgba(14, 165, 233, 0.25)
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1)
}

.contact-form .form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px
}

.contact-form .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary)
}

.contact-form .form-checkbox label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray)
}

.contact-form .form-checkbox a {
    color: var(--primary)
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary)
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

@media (max-width:768px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .contact-form-col {
        padding: 24px 18px
    }

    .contact-card-new {
        padding: 16px
    }
}

.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0
}

.service-card-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 20px;
    padding: 48px 24px 40px;
    box-shadow: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.service-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.22), 0 0 0 1px rgba(14, 165, 233, 0.15);
    background: transparent;
    border-color: rgba(14, 165, 233, 0.3)
}

.service-card-simple:hover .service-icon-wrapper {
    background: none
}

.service-card-simple:hover .service-icon-wrapper i {
    transform: scale(1.12)
}

.service-card-simple:hover h3 {
    color: var(--primary)
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1
}

.service-icon-wrapper i {
    font-size: 3.2rem;
    color: var(--primary);
    -webkit-text-stroke: 1.5px var(--primary);
    -webkit-text-fill-color: transparent;
    transition: all 0.35s ease
}

.service-card-simple h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease
}

body.dark-mode .service-card-simple {
    background: transparent;
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .service-card-simple h3 {
    color: #e2e8f0
}

body.dark-mode .service-icon-wrapper {
    background: none
}

body.dark-mode .service-icon-wrapper i {
    color: #38bdf8;
    -webkit-text-stroke: 1.5px #38bdf8;
    -webkit-text-fill-color: transparent
}

body.dark-mode .service-card-simple:hover {
    background: transparent;
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 16px 40px rgba(56, 189, 248, 0.2), 0 0 0 1px rgba(56, 189, 248, 0.2)
}

body.dark-mode .service-card-simple:hover .service-icon-wrapper {
    background: none
}

body.dark-mode .service-card-simple:hover .service-icon-wrapper i {
    transform: scale(1.12)
}

body.dark-mode .service-card-simple:hover h3 {
    color: #38bdf8
}

@media (max-width:1024px) {
    .services-grid-simple {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem
    }
}

@media (max-width:768px) {
    .services-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .service-card-simple {
        padding: 32px 16px 28px
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 20px
    }

    .service-icon-wrapper i {
        font-size: 2.2rem
    }

    .service-card-simple h3 {
        font-size: 0.95rem
    }
}

@media (max-width:480px) {
    .services-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem
    }

    .service-card-simple {
        padding: 24px 12px 20px
    }

    .service-icon-wrapper {
        width: 64px;
        height: 64px
    }

    .service-icon-wrapper i {
        font-size: 1.8rem
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 40px
}

.review-card {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.12)
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.review-avatar {
    font-size: 2rem;
    color: var(--primary)
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark)
}

.review-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--gray-light)
}

.review-source i {
    color: #4285f4
}

.reviews-summary {
    display: flex;
    justify-content: center;
    margin-top: 32px
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    padding: 12px 28px
}

.reviews-badge i {
    font-size: 1.8rem;
    color: #4285f4
}

.reviews-badge strong {
    font-size: 1.2rem;
    color: var(--dark)
}

.reviews-badge span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-light)
}

body.dark-mode .review-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(56, 189, 248, 0.1)
}

body.dark-mode .reviews-badge {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(56, 189, 248, 0.1)
}

@media (max-width:1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .reviews-grid {
        grid-template-columns: 1fr
    }
}

.service-trust-section {
    margin-top: 48px
}

.trust-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 24px
}

.trust-review-card {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 24px
}

.trust-review-card .review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    gap: 2px
}

.trust-review-card .review-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 12px;
    font-style: italic
}

.trust-review-card .review-author strong {
    font-size: 0.85rem
}

.trust-project-card {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 24px
}

.trust-project-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-heading)
}

.trust-project-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0
}

.trust-project-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--success)
}

body.dark-mode .trust-review-card,
body.dark-mode .trust-project-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(56, 189, 248, 0.1)
}

@media (max-width:768px) {
    .trust-reviews-grid {
        grid-template-columns: 1fr
    }
}

.contact-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 48px
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden
}

.btn-cta-main i {
    font-size: 18px
}

.btn-cta-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.35)
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(14, 165, 233, 0.45)
}

.btn-cta-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35)
}

.btn-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
    background: #1fb855
}

.btn-cta-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 34px
}

.btn-cta-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(14, 165, 233, 0.35)
}

body.dark-mode .btn-cta-outline {
    color: #38bdf8;
    border-color: #38bdf8
}

body.dark-mode .btn-cta-outline:hover {
    background: #38bdf8;
    color: #0f172a
}

@media (max-width:768px) {
    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px
    }

    .btn-cta-main {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px
    }
}

.partner-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%)
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: partnerMarquee 30s linear infinite;
    width: max-content
}

.partner-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 56px
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease
}

.partner-logo-item img:hover {
    opacity: 1
}

body.dark-mode .partner-logo-item img {
    filter: brightness(0) invert(1);
    opacity: 0.6
}

body.dark-mode .partner-logo-item img:hover {
    opacity: 1
}

@keyframes partnerMarquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media (max-width:768px) {
    .partner-logo-item {
        width: 72px;
        height: 40px
    }

    .partner-marquee-track {
        gap: 40px;
        animation-duration: 20s
    }
}

.service-hero-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.service-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    min-height: 300px;
    max-height: 400px;
    transition: transform 0.5s ease
}

.service-hero-img img:hover {
    transform: scale(1.03)
}

@media (max-width:768px) {
    .service-hero-img {
        order: -1
    }

    .service-hero-img img {
        min-height: 200px;
        max-height: 250px
    }
}

.warum-wir-section {
    margin-top: 60px;
    padding: 48px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(14, 165, 233, 0.1)
}

.warum-wir-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
    margin-bottom: 16px
}

.warum-wir-section .warum-intro {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px
}

.warum-wir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.warum-wir-card {
    padding: 28px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: all 0.3s ease
}

.warum-wir-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary)
}

.warum-wir-card .warum-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.warum-wir-card .warum-icon i {
    font-size: 22px;
    color: var(--primary)
}

.warum-wir-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-heading)
}

.warum-wir-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

body.dark-mode .warum-wir-section {
    background: #1a1a2e;
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .warum-wir-section h2 {
    color: #e2e8f0
}

body.dark-mode .warum-wir-section .warum-intro {
    color: #94a3b8
}

body.dark-mode .warum-wir-card {
    background: #111827;
    border-color: rgba(56, 189, 248, 0.12)
}

body.dark-mode .warum-wir-card h3 {
    color: #e2e8f0
}

body.dark-mode .warum-wir-card p {
    color: #94a3b8
}

body.dark-mode .warum-wir-card .warum-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(6, 182, 212, 0.2))
}

body.dark-mode .warum-wir-card .warum-icon i {
    color: #38bdf8
}

@media (max-width:768px) {
    .warum-wir-section {
        padding: 28px 20px;
        margin-top: 40px
    }

    .warum-wir-section h2 {
        font-size: 22px
    }

    .warum-wir-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

body.dark-mode .hero-badge {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8
}

body.dark-mode .section-badge {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8
}

body.dark-mode .trust-item {
    color: #cbd5e1
}

body.dark-mode .trust-item i {
    color: #38bdf8
}

body.dark-mode .hero-contact-info a {
    color: #cbd5e1
}

body.dark-mode .about-image-badge {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8
}

body.dark-mode .project-card {
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .service-category-badge {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8
}

body.dark-mode .service-description {
    background: #1a1a2e
}

body.dark-mode .service-description h2 {
    color: #e2e8f0
}

body.dark-mode .service-description p {
    color: #94a3b8
}

body.dark-mode .section-header-small h2 {
    color: #e2e8f0
}

body.dark-mode .section-header-small i {
    color: #38bdf8
}

body.dark-mode .problem-card {
    background: #1a1a2e;
    border-color: rgba(56, 189, 248, 0.12)
}

body.dark-mode .problem-card h3 {
    color: #e2e8f0
}

body.dark-mode .problem-card p {
    color: #94a3b8
}

body.dark-mode .problem-icon i {
    color: #38bdf8
}

body.dark-mode .timeline-number {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8
}

body.dark-mode .timeline-content h3 {
    color: #e2e8f0
}

body.dark-mode .timeline-content p {
    color: #94a3b8
}

body.dark-mode .service-cta {
    background: #1a1a2e;
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .service-cta h2 {
    color: #e2e8f0
}

body.dark-mode .service-cta p {
    color: #94a3b8
}

body.dark-mode .footer {
    background: #0c0c1d
}

body.dark-mode .footer-tagline {
    color: #94a3b8
}

body.dark-mode .footer-col h4 {
    color: #e2e8f0
}

body.dark-mode .footer-col a {
    color: #94a3b8
}

body.dark-mode .footer-col a:hover {
    color: #38bdf8
}

body.dark-mode .footer-social a {
    color: #94a3b8
}

body.dark-mode .footer-social a:hover {
    color: #38bdf8
}

body.dark-mode .footer-bottom {
    color: #64748b
}

body.dark-mode .footer-divider {
    background: rgba(56, 189, 248, 0.1)
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95)
}

body.dark-mode .navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4)
}

body.dark-mode .nav-links a {
    color: #cbd5e1
}

body.dark-mode .nav-links a:hover {
    color: #38bdf8
}

body.dark-mode .dropdown-menu {
    background: #1e293b;
    border-color: rgba(56, 189, 248, 0.15)
}

body.dark-mode .dropdown-menu a {
    color: #cbd5e1
}

body.dark-mode .dropdown-menu a:hover {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8
}

body.dark-mode .btn-remote-support {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8
}

body.dark-mode .btn-remote-support:hover {
    background: #38bdf8;
    color: #0f172a
}

body.dark-mode .mobile-menu {
    background: #1e293b
}

body.dark-mode .mobile-menu-link {
    color: #cbd5e1
}

body.dark-mode .mobile-submenu {
    background: #111827
}

body.dark-mode .mobile-submenu a {
    color: #94a3b8
}

body.dark-mode .cookie-banner {
    background: #1e293b;
    border-color: rgba(56, 189, 248, 0.15);
    color: #cbd5e1
}

body.dark-mode .page-section.alt-bg {
    background: #111827
}

body.dark-mode .page-section {
    background: #0f172a
}

body.dark-mode .section-title {
    color: #e2e8f0
}

body.dark-mode .section-subtitle {
    color: #94a3b8
}

.page-section {
    padding: var(--section-padding) 0
}

.service-hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px
}

.service-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    min-height: 280px;
    max-height: 380px;
    transition: transform 0.5s ease
}

.service-hero-img img:hover {
    transform: scale(1.03)
}

@media (max-width:768px) {
    .service-hero-img {
        order: -1
    }

    .service-hero-img img {
        min-height: 180px;
        max-height: 240px
    }
}

.container {
    max-width: 1200px
}

.section-header.text-center {
    margin-bottom: 48px
}

html {
    scroll-behavior: smooth
}

.project-card,
.contact-card-new,
.partner-logo-item,
.service-card-simple,
.warum-wir-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

body.dark-mode .dark-mode-toggle i::before {
    content: "\f185"
}

body:not(.dark-mode) .dark-mode-toggle i::before {
    content: "\f186"
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(14, 165, 233, 0.3) 100%)
}

.contact {
    background: var(--bg-light);
    padding: var(--section-padding) 0
}

body.dark-mode .contact {
    background: #0f172a
}

.contact-v2 {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #f8fafc 100%);
    overflow: hidden
}

body.dark-mode .contact-v2 {
    background: linear-gradient(160deg, #0c1222 0%, #0f172a 40%, #131c31 100%)
}

.contact-v2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.contact-v2-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15
}

.contact-v2-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: -100px
}

.contact-v2-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -120px;
    left: -80px
}

body.dark-mode .contact-v2-shape {
    opacity: 0.08
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
    margin-top: 16px
}

.contact-v2-info {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.contact-v2-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-v2-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.08);
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    cursor: default
}

a.contact-v2-card {
    cursor: pointer
}

a.contact-v2-card:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.2)
}

body.dark-mode .contact-v2-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(14, 165, 233, 0.12)
}

body.dark-mode a.contact-v2-card:hover {
    background: rgba(30, 41, 59, 0.95);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15)
}

.contact-v2-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25)
}

.contact-v2-icon-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25)
}

.contact-v2-icon-mail {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25)
}

.contact-v2-icon-location {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25)
}

.contact-v2-icon-clock {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25)
}

.contact-v2-card-body {
    flex: 1;
    min-width: 0
}

.contact-v2-card-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    font-family: var(--font-heading);
    letter-spacing: 0.01em
}

body.dark-mode .contact-v2-card-body h4 {
    color: #e2e8f0
}

.contact-v2-card-body span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500
}

a.contact-v2-card .contact-v2-card-body span {
    color: var(--primary);
    font-weight: 600
}

body.dark-mode .contact-v2-card-body span {
    color: #94a3b8
}

body.dark-mode a.contact-v2-card .contact-v2-card-body span {
    color: #38bdf8
}

.contact-v2-card-body small {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 2px
}

.contact-v2-card-arrow {
    font-size: 13px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
    flex-shrink: 0
}

a.contact-v2-card:hover .contact-v2-card-arrow {
    opacity: 1;
    transform: translateX(0)
}

body.dark-mode .contact-v2-card-arrow {
    color: #38bdf8
}

.contact-v2-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.contact-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none
}

.contact-v2-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3)
}

.contact-v2-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.45)
}

.contact-v2-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3)
}

.contact-v2-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45)
}

.contact-v2-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 12px 48px rgba(14, 165, 233, 0.08);
    position: relative
}

body.dark-mode .contact-v2-form-wrapper {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(14, 165, 233, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2)
}

.contact-v2-form-header {
    margin-bottom: 24px
}

.contact-v2-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px
}

.contact-v2-form-header h3 i {
    color: var(--primary);
    font-size: 20px
}

body.dark-mode .contact-v2-form-header h3 {
    color: #e2e8f0
}

.contact-v2-form-header p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

body.dark-mode .contact-v2-form-header p {
    color: #94a3b8
}

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

.contact-v2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-v2-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.02em
}

body.dark-mode .contact-v2-field label {
    color: #cbd5e1
}

.contact-v2-input-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.contact-v2-input-wrap>i {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: var(--primary);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease
}

.contact-v2-input-wrap:focus-within>i {
    opacity: 1
}

.contact-v2-input-wrap input,
.contact-v2-input-wrap textarea {
    width: 100%;
    padding: 13px 16px 13px 42px;
    background: rgba(248, 250, 252, 0.8);
    border: 1.5px solid rgba(14, 165, 233, 0.12);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none
}

body.dark-mode .contact-v2-input-wrap input,
body.dark-mode .contact-v2-input-wrap textarea {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(14, 165, 233, 0.2);
    color: #e2e8f0
}

.contact-v2-input-wrap input:focus,
.contact-v2-input-wrap textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: #fff
}

body.dark-mode .contact-v2-input-wrap input:focus,
body.dark-mode .contact-v2-input-wrap textarea:focus {
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15)
}

.contact-v2-input-wrap input::placeholder,
.contact-v2-input-wrap textarea::placeholder {
    color: #94a3b8
}

.contact-v2-input-textarea {
    align-items: flex-start
}

.contact-v2-input-textarea>i {
    top: 15px;
    position: absolute
}

.contact-v2-input-wrap textarea {
    resize: vertical;
    min-height: 100px
}

.contact-v2-checkbox {
    display: flex;
    align-items: center;
    gap: 10px
}

.contact-v2-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0
}

.contact-v2-checkbox label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4
}

.contact-v2-checkbox a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px
}

.contact-v2-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    position: relative;
    overflow: hidden
}

.contact-v2-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(14, 165, 233, 0.45)
}

.contact-v2-submit i {
    transition: transform 0.3s ease
}

.contact-v2-submit:hover i {
    transform: translateX(4px)
}

@media (max-width:992px) {
    .contact-v2-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

@media (max-width:600px) {
    .contact-v2 {
        padding: 60px 0 50px
    }

    .contact-v2-form-wrapper {
        padding: 24px 18px;
        border-radius: 16px
    }

    .contact-v2-form-row {
        grid-template-columns: 1fr
    }

    .contact-v2-card {
        padding: 14px 16px
    }

    .contact-v2-cta {
        flex-direction: column
    }

    .contact-v2-btn {
        justify-content: center;
        width: 100%
    }

    .contact-v2-form-header h3 {
        font-size: 19px
    }
}

.hero-title--mobile,
.hero-description--mobile {
    display: none
}

@media (max-width:768px) {

    .hero-title--desktop,
    .hero-description--desktop {
        display: none
    }

    .hero-title--mobile,
    .hero-description--mobile {
        display: block
    }

    .hero {
        padding: 100px 0 40px;
        min-height: 0
    }

    .hero-contact-info {
        display: none
    }
}

.service-popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: badgePulse 2s ease-in-out infinite
}

.service-popular-badge i {
    font-size: 0.65rem;
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: #fff;
    color: #fff
}

.service-card--popular {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.08)
}

.service-card--popular:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.18), 0 0 0 1px rgba(249, 115, 22, 0.15)
}

body.dark-mode .service-card--popular {
    border-color: rgba(251, 146, 60, 0.2)
}

body.dark-mode .service-card--popular:hover {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 16px 40px rgba(251, 146, 60, 0.15), 0 0 0 1px rgba(251, 146, 60, 0.2)
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@media (max-width:480px) {
    .service-popular-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: 8px;
        right: 8px
    }
}

.reviews-slider-dots {
    display: none
}

@media (max-width:768px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-bottom: 8px;
        scrollbar-width: none
    }

    .reviews-grid::-webkit-scrollbar {
        display: none
    }

    .reviews-grid .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: 12px
    }

    .reviews-grid .review-card:last-child {
        margin-right: 0
    }

    .review-card:hover {
        transform: none
    }

    .reviews-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px
    }

    .reviews-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(14, 165, 233, 0.25);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease
    }

    .reviews-slider-dot.active {
        background: var(--primary);
        transform: scale(1.3)
    }
}

.faq {
    background: var(--bg-light)
}

.faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px
}

.faq .faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: all 0.3s
}

.faq .faq-item:hover {
    box-shadow: var(--shadow-md)
}

.faq .faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.3s
}

.faq .faq-question:hover {
    background: rgba(14, 165, 233, 0.04)
}

.faq .faq-question h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-heading);
    flex: 1;
    line-height: 1.4
}

.faq .faq-question i {
    font-size: 16px;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px
}

.faq .faq-item.active .faq-question i {
    transform: rotate(180deg)
}

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

.faq .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px
}

.faq .faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0
}

body.dark-mode .faq .faq-item {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(56, 189, 248, 0.1)
}

body.dark-mode .faq .faq-question h3 {
    color: #e2e8f0
}

@media (max-width:768px) {
    .faq .faq-question {
        padding: 18px 20px
    }

    .faq .faq-question h3 {
        font-size: 0.9rem
    }

    .faq .faq-item.active .faq-answer {
        padding: 0 20px 18px
    }

    .faq .faq-answer p {
        font-size: 0.88rem
    }
}

/* ==========================================
   NEW SECTIONS - 2026 OVERHAUL
   ========================================== */

/* --- Pricing Card Overhaul (preise.html, ai-automatisierung.html) --- */
.pricing-card--popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    transform: scale(1.05);
    z-index: 1;
}

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

.pricing-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    white-space: nowrap;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.pricing-period {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-feature-disabled {
    opacity: 0.45;
}

.pricing-feature-disabled i {
    color: var(--gray-light) !important;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.pricing-card--popular .pricing-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

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

.pricing-intro {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-note a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.pricing-note a:hover {
    color: var(--primary-dark);
}

/* --- Pricing Singles (Einzelleistungen) --- */
.pricing-singles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.pricing-single-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.pricing-single-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.pricing-single-item span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.pricing-single-item strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

body.dark-mode .pricing-single-item {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

/* --- Service Card Price (index.html leistungen grid) --- */
.service-card-price {
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.service-card--cta {
    border: 2px dashed var(--primary);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card--cta:hover {
    background: rgba(14, 165, 233, 0.05);
    border-style: solid;
}

.service-card--cta .service-card-price {
    font-size: 1rem;
}

/* --- Automation Example Cards (ai-automatisierung.html) --- */
.automation-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.automation-example-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.automation-example-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.automation-example-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.automation-example-content h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.automation-example-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.automation-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(34, 197, 94, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

body.dark-mode .automation-example-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

/* --- Service Hero CTA (ai-automatisierung.html hero) --- */
.service-hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.service-hero-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* --- Service Pricing Inline (service page pricing sections) --- */
.service-pricing-inline {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 20px;
    margin-top: 32px;
}

.service-pricing-inline h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

body.dark-mode .service-pricing-inline {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

.calendly-inline-widget {
    min-width: 280px;
    height: 500px
}

/* --- Crosslinks Grid (service pages) --- */
.service-crosslinks {
    margin-top: 32px;
}

.service-crosslinks h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-align: center;
}

.crosslinks-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.crosslink-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.crosslink-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.crosslink-card i {
    color: var(--primary);
    font-size: 1.1rem;
}

body.dark-mode .crosslink-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
    color: var(--dark);
}

body.dark-mode .crosslink-card:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Calendly Embed (index.html, contact section) --- */
.calendly-embed-wrapper {
    min-height: 650px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
}

.calendly-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: none;
}

body.dark-mode .calendly-embed-wrapper {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

/* --- Google Reviews Widget (index.html) --- */
.google-reviews-widget {
    text-align: center;
    padding: 32px 0;
}

.reviews-fallback {
    font-size: 1rem;
    color: var(--gray);
    margin: 16px 0;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 16px;
}

.reviews-badge:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.reviews-badge i {
    font-size: 1.2rem;
}

body.dark-mode .reviews-badge {
    background: var(--bg-white);
    border-color: var(--primary);
    color: var(--dark);
}

body.dark-mode .reviews-badge:hover {
    background: var(--primary);
    color: white;
}

/* --- Responsive: New Sections --- */
@media (max-width: 768px) {
    .pricing-grid--two {
        grid-template-columns: 1fr;
    }

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

    .pricing-card--popular:hover {
        transform: translateY(-6px);
    }

    .pricing-amount {
        font-size: 36px;
    }

    .pricing-singles {
        grid-template-columns: 1fr;
    }

    .automation-examples {
        grid-template-columns: 1fr;
    }

    .automation-example-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .crosslinks-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .crosslink-card {
        justify-content: center;
    }

    .calendly-embed-wrapper,
    .calendly-embed-wrapper iframe {
        min-height: 500px;
    }

    .service-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .pricing-amount {
        font-size: 28px;
    }

    .automation-example-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
}


/* ==========================================
   NEW SECTIONS - 2026 OVERHAUL
   ========================================== */

/* --- Pricing Card Overhaul (preise.html, ai-automatisierung.html) --- */
.pricing-card--popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    transform: scale(1.05);
    z-index: 1;
}

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

.pricing-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    white-space: nowrap;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.pricing-period {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-feature-disabled {
    opacity: 0.45;
}

.pricing-feature-disabled i {
    color: var(--gray-light) !important;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.pricing-card--popular .pricing-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

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

.pricing-intro {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-note a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.pricing-note a:hover {
    color: var(--primary-dark);
}

/* --- Pricing Singles (Einzelleistungen) --- */
.pricing-singles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.pricing-single-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.pricing-single-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.pricing-single-item span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.pricing-single-item strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

body.dark-mode .pricing-single-item {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

/* --- Service Card Price (index.html leistungen grid) --- */
.service-card-price {
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.service-card--cta {
    border: 2px dashed var(--primary);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card--cta:hover {
    background: rgba(14, 165, 233, 0.05);
    border-style: solid;
}

.service-card--cta .service-card-price {
    font-size: 1rem;
}

/* --- Automation Example Cards (ai-automatisierung.html) --- */
.automation-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.automation-example-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.automation-example-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.automation-example-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.automation-example-content h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.automation-example-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.automation-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(34, 197, 94, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

body.dark-mode .automation-example-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

/* --- Service Hero CTA (ai-automatisierung.html hero) --- */
.service-hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.service-hero-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* --- Service Pricing Inline (service page pricing sections) --- */
.service-pricing-inline {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 20px;
    margin-top: 32px;
}

.service-pricing-inline h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

body.dark-mode .service-pricing-inline {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

.calendly-inline-widget {
    min-width: 280px;
    height: 500px
}

/* --- Crosslinks Grid (service pages) --- */
.service-crosslinks {
    margin-top: 32px;
}

.service-crosslinks h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-align: center;
}

.crosslinks-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.crosslink-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.crosslink-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.crosslink-card i {
    color: var(--primary);
    font-size: 1.1rem;
}

body.dark-mode .crosslink-card {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
    color: var(--dark);
}

body.dark-mode .crosslink-card:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Calendly Embed (index.html, contact section) --- */
.calendly-embed-wrapper {
    min-height: 650px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
}

.calendly-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: none;
}

body.dark-mode .calendly-embed-wrapper {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.1);
}

/* --- Google Reviews Widget (index.html) --- */
.google-reviews-widget {
    text-align: center;
    padding: 32px 0;
}

.reviews-fallback {
    font-size: 1rem;
    color: var(--gray);
    margin: 16px 0;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 16px;
}

.reviews-badge:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.reviews-badge i {
    font-size: 1.2rem;
}

body.dark-mode .reviews-badge {
    background: var(--bg-white);
    border-color: var(--primary);
    color: var(--dark);
}

body.dark-mode .reviews-badge:hover {
    background: var(--primary);
    color: white;
}

/* --- Responsive: New Sections --- */
@media (max-width: 768px) {
    .pricing-grid--two {
        grid-template-columns: 1fr;
    }

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

    .pricing-card--popular:hover {
        transform: translateY(-6px);
    }

    .pricing-amount {
        font-size: 36px;
    }

    .pricing-singles {
        grid-template-columns: 1fr;
    }

    .automation-examples {
        grid-template-columns: 1fr;
    }

    .automation-example-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .crosslinks-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .crosslink-card {
        justify-content: center;
    }

    .calendly-embed-wrapper,
    .calendly-embed-wrapper iframe {
        min-height: 500px;
    }

    .service-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .pricing-amount {
        font-size: 28px;
    }

    .automation-example-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
}


@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
        min-height: 0;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 10px;
        letter-spacing: -0.3px;
    }

    .hero .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .page-hero {
        padding: 80px 0 30px;
        padding-top: 100px;
    }

    .page-hero .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .page-hero .hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 8px;
    }
}

/* Contact cards 4-in-a-row */
.contact-v2-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.contact-v2-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 14px
}

.contact-v2-card-arrow {
    display: none
}

.contact-v2-card-body h4 {
    font-size: .9rem;
    margin-bottom: 2px
}

.contact-v2-card-body span {
    font-size: .82rem;
    color: var(--gray)
}

a.contact-v2-card:hover {
    transform: translateY(-4px)
}

@media(max-width:600px) {
    .contact-v2-info-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-v2-card {
        padding: 14px 12px
    }
}

.contact-v2-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px
}

@media(max-width:992px) {
    .contact-v2-info-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

.trust-platforms {
    margin-bottom: 40px
}

.trust-platforms-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.trust-platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, .12);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: var(--shadow-sm)
}

.trust-platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, .3)
}

.trust-platform-item i,
.trust-platform-item svg {
    font-size: 20px;
    flex-shrink: 0
}

.trust-platform-item .fa-google {
    color: #4285f4
}

.trust-platform-item .fa-certificate {
    color: #e8710a
}

.trust-platform-item .fa-map-marker-alt {
    color: #0ea5e9
}

.trust-platform-item .fa-yelp {
    color: #d32323
}

body.dark-mode .trust-platform-item {
    background: var(--dark-light);
    border-color: rgba(56, 189, 248, .15);
    color: var(--gray-light)
}

body.dark-mode .trust-platform-item:hover {
    border-color: rgba(56, 189, 248, .35)
}

@media(max-width:768px) {
    .trust-platforms-row {
        gap: 12px
    }

    .trust-platform-item {
        padding: 10px 14px;
        font-size: 12px;
        gap: 6px
    }

    .trust-platform-item i,
    .trust-platform-item svg {
        font-size: 16px;
        width: 16px;
        height: 16px
    }
}

@media(max-width:480px) {
    .trust-platform-item span {
        display: none
    }

    .trust-platform-item {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center
    }

    .trust-platform-item i,
    .trust-platform-item svg {
        font-size: 20px;
        width: 20px;
        height: 20px
    }
}

.trust-platforms {
    margin-bottom: 40px
}

.trust-platforms-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.trust-platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, .12);
    border-radius: 50%;
    text-decoration: none;
    color: var(--dark);
    transition: all .3s ease;
    box-shadow: var(--shadow-sm)
}

.trust-platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, .3)
}

.trust-platform-item i {
    font-size: 22px;
    flex-shrink: 0
}

.trust-platform-item img {
    width: 28px;
    height: 28px;
    object-fit: contain
}

.trust-platform-item .fa-map-marker-alt {
    color: #0ea5e9
}

body.dark-mode .trust-platform-item {
    background: var(--dark-light);
    border-color: rgba(56, 189, 248, .15)
}

body.dark-mode .trust-platform-item:hover {
    border-color: rgba(56, 189, 248, .35)
}

body.dark-mode .trust-platform-item img {
    filter: brightness(1.2)
}

@media(max-width:768px) {
    .trust-platforms-row {
        gap: 14px
    }

    .trust-platform-item {
        width: 48px;
        height: 48px
    }

    .trust-platform-item i {
        font-size: 18px
    }

    .trust-platform-item img {
        width: 22px;
        height: 22px
    }
}

.trust-platforms {
    margin-bottom: 40px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.trust-platforms-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: trust-slide 20s linear infinite
}

.trust-platforms:hover .trust-platforms-track {
    animation-play-state: paused
}

@keyframes trust-slide {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.trust-platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, .12);
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: var(--shadow-sm)
}

.trust-platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, .3)
}

.trust-platform-item img {
    width: 28px;
    height: 28px;
    object-fit: contain
}

body.dark-mode .trust-platform-item {
    background: var(--dark-light);
    border-color: rgba(56, 189, 248, .15)
}

body.dark-mode .trust-platform-item:hover {
    border-color: rgba(56, 189, 248, .35)
}

body.dark-mode .trust-platform-item img {
    filter: brightness(1.2)
}

@media(max-width:768px) {
    .trust-platforms-track {
        gap: 32px
    }

    .trust-platform-item {
        width: 48px;
        height: 48px
    }

    .trust-platform-item img {
        width: 22px;
        height: 22px
    }
}

.trust-platforms {
    margin-bottom: 40px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.trust-platforms-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: trust-slide 18s linear infinite
}

.trust-platforms:hover .trust-platforms-track {
    animation-play-state: paused
}

@keyframes trust-slide {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.trust-platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, .12);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease
}

.trust-platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, .3)
}

.trust-platform-item img {
    width: 28px;
    height: 28px;
    object-fit: contain
}

body.dark-mode .trust-platform-item {
    background: var(--dark-light);
    border-color: rgba(56, 189, 248, .15)
}

body.dark-mode .trust-platform-item:hover {
    border-color: rgba(56, 189, 248, .35)
}

body.dark-mode .trust-platform-item img {
    filter: brightness(1.2)
}

@media(max-width:768px) {
    .trust-platforms-track {
        gap: 32px
    }

    .trust-platform-item {
        width: 48px;
        height: 48px
    }

    .trust-platform-item img {
        width: 22px;
        height: 22px
    }
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.ref-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, .1);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.ref-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, .15);
    border-color: rgba(14, 165, 233, .25)
}

.ref-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden
}

.ref-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.ref-card:hover .ref-card-img img {
    transform: scale(1.08)
}

.ref-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 28px;
    flex: 1
}

.ref-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
    font-family: var(--font-heading)
}

.ref-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
    margin: 0 0 8px;
    line-height: 1.3
}

.ref-card-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1
}

.ref-card-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(14, 165, 233, .08);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary)
}

.ref-card-result i {
    font-size: 15px
}

body.dark-mode .ref-card {
    background: var(--dark-light);
    border-color: rgba(56, 189, 248, .12)
}

body.dark-mode .ref-card:hover {
    border-color: rgba(56, 189, 248, .3);
    box-shadow: 0 20px 50px rgba(56, 189, 248, .1)
}

body.dark-mode .ref-card-title {
    color: #e2e8f0
}

body.dark-mode .ref-card-desc {
    color: var(--gray-light)
}

body.dark-mode .ref-card-result {
    border-top-color: rgba(56, 189, 248, .1);
    color: #38bdf8
}

.ref-load-more {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all .3s ease
}

.ref-load-more:hover {
    background: var(--primary);
    color: #fff
}

.ref-load-more i {
    font-size: 12px;
    transition: transform .3s ease
}

.ref-load-more:hover i {
    transform: translateY(2px)
}

body.dark-mode .ref-load-more {
    border-color: #38bdf8;
    color: #38bdf8
}

body.dark-mode .ref-load-more:hover {
    background: #38bdf8;
    color: #0f172a
}

@media(max-width:1024px) {
    .ref-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .ref-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .ref-card-img {
        height: 150px
    }

    .ref-card-body {
        padding: 18px 18px 22px
    }

    .ref-card-title {
        font-size: 15px
    }

    .ref-grid .ref-card:nth-child(n+2) {
        display: none
    }

    .ref-grid.ref-grid--expanded .ref-card:nth-child(n+2) {
        display: flex
    }

    .ref-load-more {
        display: flex
    }

    .ref-grid--expanded~.ref-load-more {
        display: none
    }
}