:root {
    --primary-color: #FFC44D;
    --primary-dark: #E6B043;
    --secondary-color: #64748b;
    --text-dark: #101211;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-dark: #101211;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --card-border: 1px solid var(--border-color);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

/* Navigation - Glassmorphic */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    height: auto;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    min-width: 300px;
    width: max-content;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dropdown-item {
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-item h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dropdown-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 196, 77, 0.4);
}

.btn-nav-desktop {
    display: inline-block;
}

/* Mobile navigation items - hidden on desktop, controlled by JS on mobile */
@media (min-width: 769px) {
    .nav-cta-mobile,
    .nav-auth-mobile,
    .nav-register-mobile,
    .nav-user-mobile {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2.5px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1b1a 100%);
    color: var(--text-white);
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 196, 77, 0.3);
    background: rgba(255, 196, 77, 0.15);
}

.hero-badge-title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.hero-badge-symbol {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    transform: translateY(0);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 18, 17, 0.3);
    background-color: var(--bg-dark);
}

.btn-primary-alt {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(255, 196, 77, 0.3);
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

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

.btn-secondary-alt {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary-alt:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 196, 77, 0.4);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-scroll {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
    gap: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.partner-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-2px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: var(--card-border);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-link-wrapper {
    margin-top: 15px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-term {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
    border-radius: 8px;
}

.pricing-features::marker {
    color: var(--primary-color);
}

.pricing-features li {
    padding: 0.2rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features .checkmark {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-gradient {
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 18, 17, 0.3);
    background: #000000;
}

.pricing-custom {
    text-align: center;
    padding: 3rem;
    background: var(--bg-dark);
    border-radius: 16px;
    margin-top: 2rem;
}

.pricing-custom h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.pricing-custom p {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

/* Process Timeline */
.process {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
}

.process-step {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: var(--card-border);
    transition: all 0.3s ease;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.process-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.process-deliverables {
    list-style: none;
}

.process-deliverables li {
    padding: 0.25rem 0;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.process-deliverables li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: var(--bg-white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--bg-light);
    border-radius: 12px;
    border: var(--card-border);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.result-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.result-card>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #C99A38 100%);
    color: var(--text-dark);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    transition: all 0.3s ease !important;
    transform: translateY(0) !important;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(16, 18, 17, 0.3);
}

.cta-buttons .btn:active {
    transform: translateY(0) !important;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.625rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    word-break: break-word;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

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

.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter h5 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-newsletter {
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    opacity: 1;
}

/* Blog Newsletter */
.blog-newsletter-cta {
    padding: 4rem 0;
    background: var(--bg-light);
}

.blog-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.blog-newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-newsletter-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.blog-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.blog-newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.blog-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.blog-newsletter-form button {
    white-space: nowrap;
}

/* Gamification Section - New Interactive Version */
.gamification {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.gamification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.gamification .section-title,
.gamification .section-subtitle {
    color: white;
}

/* Automation Dashboard */
.automation-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.dashboard-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Multiplier Display */
.multiplier-display {
    text-align: center;
}

.multiplier-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.multiplier-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.multiplier-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.multiplier-x {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.multiplier-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 196, 77, 0.1);
    border-radius: 20px;
    display: inline-block;
}

/* Automation Meter */
.automation-meter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meter-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.meter-bar {
    position: relative;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    position: relative;
    overflow: hidden;
}

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.meter-percentage {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Workflow Activations */
.game-workflow-activations {
    margin-top: 3rem;
}

.game-workflow-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.game-workflow-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.game-workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.game-workflow-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.game-workflow-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 196, 77, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.game-workflow-card.active {
    background: linear-gradient(135deg, rgba(255, 196, 77, 0.15) 0%, rgba(230, 176, 67, 0.1) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(255, 196, 77, 0.2);
}

.game-workflow-card.active::before {
    transform: scaleX(1);
}

.game-workflow-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
    transition: all 0.3s ease;
}

.game-workflow-card.active .status-indicator {
    background: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.game-workflow-card.active .status-text {
    color: var(--primary-color);
}

.game-workflow-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.game-workflow-icon i {
    transition: all 0.3s ease;
}

.game-workflow-card:hover .game-workflow-icon,
.game-workflow-card.active .game-workflow-icon {
    color: var(--primary-color);
}

.game-workflow-card:hover .game-workflow-icon i,
.game-workflow-card.active .game-workflow-icon i {
    transform: scale(1.1);
}

.game-workflow-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.game-workflow-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-workflow-boost {
    display: inline-block;
    background: rgba(255, 196, 77, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(255, 196, 77, 0.2);
}

.game-workflow-card.active .game-workflow-boost {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

/* Impact Metrics */
.impact-metrics {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.impact-metrics-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: white;
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 2rem;
}

.impact-metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.impact-metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 196, 77, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.impact-metric-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.impact-metric-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.impact-metric-icon i {
    transition: all 0.3s ease;
}

.impact-metric-card:hover .metric-icon i {
    transform: scale(1.1);
}

.impact-metric-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 196, 77, 0.2);
    animation: pulse-ring 2s infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.impact-metric-value {
    margin-bottom: 0.5rem;
}

.impact-metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-metric-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-left: 0.25rem;
}

.impact-metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.impact-metric-change {
    margin-top: 0.75rem;
}

.impact-change-value {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

/* Gamification CTA */
.gamification-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gamification-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gamification-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.gamification-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.gamification-cta .btn {
    position: relative;
    z-index: 1;
    background: var(--text-dark);
    color: white;
}

.gamification-cta .btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .dropdown-menu {
        min-width: 250px;
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 72px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        gap: 0;
        overflow-y: auto;
        z-index: 999;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-cta-mobile .btn-nav {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        display: block;
    }

    .nav-auth-mobile[style*="display: block"],
    .nav-register-mobile[style*="display: block"] {
        display: block;
        padding: 0.75rem 1.5rem;
        list-style: none;
    }

    .nav-auth-mobile-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0.75rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.2s ease;
        background: var(--bg-light);
    }

    .nav-auth-mobile-link:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-auth-mobile-link i {
        font-size: 16px;
    }

    .nav-register-mobile .btn-nav {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        display: block;
    }

    .nav-user-mobile[style*="display: block"] {
        display: block;
        padding: 0;
        list-style: none;
    }

    .nav-user-mobile-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 1rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        transition: background 0.2s ease;
        font-family: 'Inter', sans-serif;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-user-mobile-item:last-child {
        border-bottom: none;
    }

    .nav-user-mobile-item:hover {
        background: var(--bg-light);
    }

    .nav-user-mobile-item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
        color: var(--text-light);
    }

    .btn-nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .dropdown-menu {
        padding: 0;
        position: static;
        box-shadow: none;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border-radius: 0;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown > a {
        position: relative;
        padding-right: 3rem;
    }

    .dropdown > a::before {
        content: '\25BC';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.65rem;
        color: #666;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::before {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .dropdown-item {
        padding: 1rem 1.5rem 1rem 2.5rem;
        border-radius: 0;
        margin-bottom: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 196, 77, 0.08);
    }

    .dropdown-item h4 {
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
        color: #333;
    }

    .dropdown-item p {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #666;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        padding: 0.25rem;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }

    .nav-menu {
        top: 56px;
        height: calc(100vh - 64px);
        padding: 1.5rem 1rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .nav-cta-mobile {
        padding: 0.875rem 1.25rem;
    }

    .nav-cta-mobile .btn-nav {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .dropdown-item {
        padding: 0.875rem 1.25rem 0.875rem 2.25rem;
    }

    .dropdown > a::before {
        right: 1.25rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.875rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .blog-newsletter-form {
        flex-direction: column;
    }

    .blog-newsletter-form input {
        min-width: 100%;
    }

    .blog-newsletter-form button {
        width: 100%;
    }
}

/* Service Pages Enhanced Styles */
.service-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.service-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-intro p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.benefit-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 196, 77, 0.25);
    border-color: var(--primary-color);
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.2);
}

.benefit-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.feature-section {
    background: var(--bg-light);
    padding: 6rem 0;
    margin: 4rem 0;
}

.feature-header {
    text-align: center;
    margin-bottom: 4rem;
}

.feature-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.feature-list {
    display: grid;
    gap: 2.5rem;
}

.feature-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.feature-item h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: var(--bg-light);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.process-showcase {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 3rem;
    border-radius: 24px;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.process-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.process-showcase .container {
    position: relative;
    z-index: 1;
}

.process-showcase h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.process-showcase>p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 2rem;
}

.process-step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.process-step-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step-card p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.95;
    line-height: 1.7;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 3rem;
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-box {
    background: white;
    border: 3px solid var(--primary-color);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    margin: 5rem 0;
    box-shadow: 0 8px 32px rgba(255, 196, 77, 0.15);
}

.cta-box h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-enhanced {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    max-height: 800px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-dark);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    padding: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -45%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--bg-white);
    padding: 10rem 0 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-hero .container > div {
    margin-top: 48px;
}

.contact-methods {
    padding: 4rem 0;
    background: var(--bg-white);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-method-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-method-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1b1a 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.contact-method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-method-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-method-link:hover {
    color: var(--primary-dark);
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

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

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: var(--card-border);
    width: 100%;
}

.contact-form-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-header h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-form-header > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23101211' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-arrow .arrow {
    transition: transform 0.3s ease;
}

.btn-arrow:hover .arrow {
    transform: translateX(4px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.contact-faq {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Form Process List */
.contact-process-section {
    margin-bottom: 32px;
}

.contact-process-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.contact-process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.contact-process-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-process-text {
    font-size: 15px;
    color: #666;
}

/* Contact Response Guarantee Box */
.contact-guarantee-box {
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-guarantee-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-guarantee-text {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero p {
        font-size: 1.125rem;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .feature-header h2 {
        font-size: 2rem;
    }

    .process-showcase h2 {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        height: 95vh;
        border-radius: 12px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .modal-body {
        padding: 15px;
    }

    .contact-hero {
        padding: 8rem 0 3rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }

    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form-header {
        margin-bottom: 2rem;
    }

    .contact-form-header h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .contact-form-header > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-modern {
        gap: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .modal-body {
        padding: 10px;
    }

    .modal-close {
        top: 18px;
        right: 18px;
        width: 32px;
        height: 32px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 2rem 0;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .contact-form-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-form-header > p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .contact-process-section {
        margin-bottom: 1.5rem;
    }

    .contact-process-title {
        font-size: 1rem;
    }

    .contact-process-text {
        font-size: 0.85rem;
    }

    .contact-guarantee-box {
        padding: 1rem;
    }

    .contact-guarantee-title {
        font-size: 0.95rem;
    }

    .contact-guarantee-text {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-item {
        padding: 1.75rem;
    }
}

/* About Page Styles */
.about-stats {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box-about {
    text-align: center;
}

.stat-number-about {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-light);
    font-weight: 500;
}

.about-mission {
    padding: 6rem 0;
    background: var(--bg-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-pillars {
    width: 100%;
}

.mission-pillars h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pillar-icon-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pillar-icon {
    font-size: 1.5rem;
}

.pillar-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pillar-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-leadership {
    padding: 6rem 0;
    background: white;
}

.leadership-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.leadership-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.leadership-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--bg-light);
    border: var(--card-border);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.leader-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.leader-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.leader-role {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.leader-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.leader-links a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.about-culture {
    padding: 6rem 0;
    background: var(--bg-light);
}

.culture-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.culture-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.culture-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.culture-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: var(--card-border);
    transition: all 0.3s ease;
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.culture-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.culture-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-journey {
    padding: 6rem 0;
    background: white;
}

.journey-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.journey-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.journey-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 1.25rem;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: var(--card-border);
}

.timeline-content.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: 0;
}

.timeline-year {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content.featured .timeline-year {
    color: var(--text-dark);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-content.featured p {
    color: var(--text-dark);
    opacity: 0.9;
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 3.5rem;
    }

    .timeline-dot {
        left: 0.625rem;
    }

}

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

    .stat-number-about {
        font-size: 2.25rem;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pillar-card {
        padding: 1.5rem;
    }

    .leadership-header h2 {
        font-size: 2rem;
    }

    .culture-header h2 {
        font-size: 2rem;
    }

    .journey-header h2 {
        font-size: 2rem;
    }

}

/* AI Automation Page Styles */
.ai-automation-solutions {
    padding: 6rem 0;
    background: white;
}

.ai-automation-solutions .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ai-automation-service-card {
    background: var(--bg-light);
    border: var(--card-border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ai-automation-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ai-service-header {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.ai-service-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1b1a 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.ai-service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ai-service-title {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
    min-width: 0;
}

.ai-service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.ai-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.ai-service-features li {
    padding: 0.375rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ai-service-features li .checkmark {
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: bold;
    font-size: 0.875rem;
}

.ai-service-pricing {
    display: none;
    border-top: var(--card-border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.ai-service-pricing-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.ai-service-pricing .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.ai-automation-process {
    padding: 6rem 0;
    background: var(--bg-light);
}

.ai-automation-process .feature-list {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    position: relative;
    padding: 2rem 0;
}

.ai-automation-process .feature-list::before {
    content: '';
    position: absolute;
    top: 4.5rem;
    left: 2.5rem;
    right: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    z-index: 0;
}

.ai-automation-process .feature-item {
    flex: 1;
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    margin: 0 0.5rem;
    border: var(--card-border);
}

.ai-automation-process .feature-item:hover {
    transform: scale(1.05) translateY(-12px);
    z-index: 2;
}

.ai-automation-process .feature-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.ai-automation-process .feature-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
}

.ai-automation-process .feature-item p {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-automation-process .feature-item p strong {
    font-weight: 900;
}

.ai-automation-process .feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-automation-process .feature-list ul li {
    padding: 0.2rem 0;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
    position: relative;
    padding-left: 0.75rem;
}

.ai-automation-process .feature-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 1200px) {
    .ai-automation-process .feature-list {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 1rem 0;
    }

    .ai-automation-process .feature-list::before {
        display: none;
    }

    .ai-automation-process .feature-item {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 200px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .ai-automation-process .feature-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ai-automation-process .feature-item {
        flex: 1 1 auto;
        padding: 1.5rem 1.25rem;
        margin: 0;
    }

    .ai-automation-process .feature-item h3 {
        font-size: 1.05rem;
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 1rem;
    }

    .ai-automation-process .feature-item p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ai-automation-solutions .services-grid {
        grid-template-columns: 1fr;
    }

    .ai-service-header {
        gap: 15px;
    }

    .ai-service-title {
        font-size: 1.25rem;
    }

    .ai-service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    /* Gamification Responsive */
    .gamification {
        padding: 4rem 0;
    }

    .automation-dashboard {
        padding: 2rem 1.5rem;
    }

    .dashboard-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .multiplier-number {
        font-size: 3rem;
    }

    .game-workflow-grid {
        grid-template-columns: 1fr;
    }

    .game-workflow-card {
        padding: 1.5rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .gamification-cta {
        padding: 3rem 2rem;
    }

    .gamification-cta h3 {
        font-size: 1.75rem;
    }

    .gamification-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ai-service-header {
        gap: 12px;
    }

    .ai-service-title {
        font-size: 1.1rem;
    }

    .ai-service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .ai-automation-service-card {
        padding: 1.5rem;
    }

    .multiplier-number {
        font-size: 2.5rem;
    }

    .multiplier-x {
        font-size: 1.5rem;
    }

    .game-workflow-title {
        font-size: 1.5rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .gamification-cta h3 {
        font-size: 1.5rem;
    }
}

/* Legal Pages (Impressum, Datenschutz, etc.) */
.legal-page {
    padding: 8rem 0 4rem;
    background-color: var(--bg-white);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    border: var(--card-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 3rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }
}

/* Performance-optimized scroll animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease calc(var(--animation-order) * 0.1s),
                transform 0.6s ease calc(var(--animation-order) * 0.1s);
    will-change: auto;
}
/* Navigation Auth Styles */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-auth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-auth-link:hover {
    background: var(--bg-light);
}

.nav-auth-link i {
    font-size: 16px;
}

.nav-user-menu {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-user-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-user-btn i.fa-user-circle {
    font-size: 20px;
    color: var(--primary-color);
}

.nav-user-btn i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-user-menu.active .nav-user-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    overflow: hidden;
}

.nav-user-menu.active .nav-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.nav-user-dropdown-item:hover {
    background: var(--bg-light);
}

.nav-user-dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-auth {
        display: none;
    }
}
