body {
    font-family: Outfit, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    color: var(--primary-hover);
}
.text-color-primary {
    color: var(--text-primary) !important;
}
.text-color-secondary {
    color: var(--text-secondary) !important;
}
.text-color-white {
    color: var(--text-white) !important;
}
.text-color-brand {
    color: var(--primary) !important;
}
.bg-base {
    background: var(--bg-base) !important;
}
.bg-elevated {
    background: var(--bg-elevated) !important;
}
.bg-overlay {
    background: var(--bg-overlay) !important;
}
.bg-brand {
    background: var(--primary) !important;
}
.border-standard {
    border: 1px solid var(--border) !important;
}
.border-standard-bottom {
    border-bottom: 1px solid var(--border) !important;
}
.border-color-std {
    border-color: var(--border) !important;
}
.card-elevated {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}
.card-header-overlay {
    background: var(--bg-overlay);
    border-bottom: 1px solid var(--border);
}
.btn-brand,
.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text-white);
}
.btn-brand:hover,
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-white);
}
.btn-brand:focus,
.btn-brand:focus-visible,
.btn-primary:focus,
.btn-primary:focus-visible {
    background: var(--primary-active);
    border-color: var(--primary-active);
    color: var(--text-white);
    box-shadow: 0 0 0 0.25rem rgba(var(--rgb-primary), 0.35);
}
.btn-outline-primary,
.btn-secondary-outline {
    background: var(--bg-overlay);
    border: 1px solid var(--border);
    color: var(--text-primary);
}
.btn-outline-primary:hover,
.btn-secondary-outline:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}
.icon-brand {
    color: var(--primary);
}
#hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
}
#hero::before {
    content: '';
    position: absolute;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(225, 93, 16, 0.35) 0, transparent 50%), radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255, 120, 40, 0.25) 0, transparent 45%), radial-gradient(ellipse 70% 60% at 50% 50%, rgba(225, 93, 16, 0.15) 0, transparent 55%);
    animation: heroGradientPulse 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes heroGradientPulse {
    0% {
        transform: rotate(0) scale(1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
#hero > .container,
#hero > .container-fluid {
    position: relative;
    z-index: 1;
}
#hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0, var(--primary) 50%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleShimmer 3s ease-in-out infinite;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@keyframes heroTitleShimmer {
    0%,
    100% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.section-heading-gradient {
    background: linear-gradient(135deg, #fff 0, #e8e8e8 25%, #f5a066 50%, #e8e8e8 75%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sectionHeadingShimmer 4s ease-in-out 2;
}
@keyframes sectionHeadingShimmer {
    0%,
    100% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.lang-flag-grid {
    max-width: 200px;
}
.lang-flag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    font-size: 0.85rem;
}
.lang-flag-item:hover {
    background: rgba(var(--rgb-primary), 0.15);
    color: var(--primary);
    transform: translateX(2px);
}
.lang-flag-item.active {
    background: rgba(var(--rgb-primary), 0.2);
    color: var(--primary);
}
.lang-flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.lang-code {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.integration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scroll-down-cta {
    transition: transform 0.3s ease;
}
.scroll-down-cta:hover {
    transform: translateY(5px);
}
.scroll-down-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}
section h2.display-5 {
    position: relative;
    display: inline-block;
}
section .text-center h2.display-5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}
#hero .card-elevated {
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(225, 93, 16, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(225, 93, 16, 0.1);
    animation: heroCardFloat 6s ease-in-out infinite;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
#hero .card-elevated:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(225, 93, 16, 0.15);
}
@keyframes heroCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
#features .card-elevated {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 93, 16, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
#features .card-elevated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#features .card-elevated:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(225, 93, 16, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(225, 93, 16, 0.1);
}
#features .card-elevated:hover::before {
    opacity: 1;
}
#features .card-elevated i.text-color-brand {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0 transparent);
}
#features .card-elevated:hover i.text-color-brand {
    filter: drop-shadow(0 0 10px rgba(225, 93, 16, 0.6));
    transform: scale(1.1);
}
#testimonials .card-elevated {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 93, 16, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
#testimonials .card-elevated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#testimonials .card-elevated::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(225, 93, 16, 0.15);
    line-height: 1;
    pointer-events: none;
}
#testimonials .card-elevated:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(225, 93, 16, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(225, 93, 16, 0.1);
}
#testimonials .card-elevated:hover::before {
    opacity: 1;
}
.pricing-glow-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.pricing-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.pricing-glow-1 {
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(225, 93, 16, 0.1);
    animation: pricing-pulse 8s ease-in-out infinite;
}
.pricing-glow-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    background: rgba(225, 93, 16, 0.05);
    filter: blur(150px);
}
.pricing-glow-3 {
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: rgba(59, 130, 246, 0.06);
    filter: blur(100px);
}
@keyframes pricing-pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}
.pricing-title-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.pricing-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    box-shadow: 0 0 20px var(--primary);
}
.pricing-card-animate {
    animation: pricing-fade-in 0.5s ease-out forwards;
    opacity: 0;
}
@keyframes pricing-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 24px;
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(48, 54, 61, 0.5);
    transition: all 0.3s ease;
    height: 100%;
}
.pricing-card:hover {
    border-color: rgba(225, 93, 16, 0.3);
    box-shadow: 0 0 30px rgba(225, 93, 16, 0.1);
}
.pricing-card-featured {
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px rgba(225, 93, 16, 0.2);
    transform: scale(1.02);
    background: linear-gradient(180deg, rgba(22, 27, 34, 0.9) 0, rgba(22, 27, 34, 0.8) 100%);
}
.pricing-card-featured:hover {
    box-shadow: 0 0 50px rgba(225, 93, 16, 0.35);
}
.pricing-bestseller-badge {
    position: absolute;
    top: 0;
    right: 16px;
}
.pricing-bestseller-badge span {
    display: inline-block;
    background: #10b981;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 0 0 6px 6px;
}
.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.pricing-icon {
    color: var(--primary);
    flex-shrink: 0;
}
.pricing-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}
.pricing-card-price {
    margin-bottom: 16px;
}
.pricing-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}
.pricing-price-featured {
    color: var(--primary) !important;
}
.pricing-price-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 2px;
}
.pricing-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}
.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}
.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-white);
}
.pricing-feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-feature-check svg {
    color: #10b981;
}
.pricing-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-overlay);
    color: var(--text-secondary);
    margin-top: auto;
}
.pricing-btn:hover {
    background: rgba(48, 54, 61, 0.8);
    box-shadow: 0 0 15px rgba(225, 93, 16, 0.15);
}
.pricing-btn-featured {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(225, 93, 16, 0.4);
}
.pricing-btn-featured:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 30px rgba(225, 93, 16, 0.6);
}
#pricing .card-elevated {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 93, 16, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
#pricing .card-elevated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#pricing .card-elevated:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(225, 93, 16, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(225, 93, 16, 0.1);
}
#pricing .card-elevated:hover::before {
    opacity: 1;
}
#pricing .card-elevated.border-brand {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(225, 93, 16, 0.2);
}
#pricing .card-elevated.border-brand:hover {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(225, 93, 16, 0.3);
}
#integration .card-elevated {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 93, 16, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#integration .card-elevated:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 93, 16, 0.3);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(225, 93, 16, 0.1);
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.footer-public {
    background: var(--footer-gradient, var(--footer-bg));
    position: relative;
}
.footer-public::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
}
.footer-public .container-fluid {
    position: relative;
    z-index: 1;
}
.public-navbar {
    height: 70px;
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.public-navbar .navbar-brand img {
    height: 32px;
    width: auto;
}
.mobile-menu-toggle {
    background: 0 0;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
}
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}
.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-white);
    transition: all 0.3s ease;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-base);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.mobile-menu-overlay.active {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
    background: 0 0;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
}
.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.mobile-menu-link:hover {
    background: var(--bg-overlay);
    color: var(--primary);
}
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}
.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--primary);
}
@media (max-width: 991px) {
    .d-lg-flex {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}
@media (max-width: 991px) {
    html,
    body {
        overflow-x: hidden;
    }
}
