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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Promotional Banner */
.promo-banner {
    padding: 12px 0;
    width: 100%;
    transition: background-color 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.promo-text {
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
    margin: 0 !important;
}

.register-link {
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.register-link:hover {
    text-decoration: underline;
}

/* Main Navigation */
.main-nav {
    border-bottom: 1px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 12px;
}
    
.nav-left {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 13px;
}

.logo-mini,
.footer-logo-mini {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.logo-img,
.footer-logo-img {
    height: 21px;
    width: auto;
}

.logo-mini-dark,
.logo-img-dark,
.footer-logo-mini-dark,
.footer-logo-img-dark {
    display: none;
}

#moon-icon {
    display: none;
}

.logo-icon {
    flex-shrink: 0;
    font-size: 32px;
    color: #25D366;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    margin-left: 0;
}

.nav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link.dropdown {
    cursor: pointer;
}

.chevron-down {
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link:hover .chevron-down {
    color: #14B8A6;
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.btn-trial {
    color: white;
    padding: 10px 20px;
    margin: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-trial:hover {
    transform: translateY(-1px);
}

.arrow-right {
    flex-shrink: 0;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-selector-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    overflow: hidden;
    pointer-events: none;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}


.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    background-color: rgba(20, 184, 166, 0.1);
    font-weight: 600;
}

.language-option.active:hover {
    background-color: rgba(20, 184, 166, 0.15);
}

.language-option span {
    font-size: 14px;
    font-weight: 500;
}

.chevron-down {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.language-selector.active .chevron-down {
    transform: rotate(180deg);
}

/* Hide Google Translate default widget */
#google_translate_element {
    display: none !important;
}

.goog-te-banner-frame,
.goog-te-menu-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Hide Google Translate footer */
.goog-te-footer {
    display: none !important;
}

/* Hide skip translate element */
.skiptranslate {
    display: none !important;
}

.flag-icon {
    flex-shrink: 0;
}

.language-selector span {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.chevron-up {
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    margin-left: 10px;
    margin-right: 18px;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.theme-toggle i {
    font-size: 20px;
    transition: color 0.3s ease;
}

/* Hero Section (New) */
.hero-v2 {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(20, 184, 166, 0.28) 0%, rgba(20, 184, 166, 0) 60%),
        radial-gradient(800px 500px at 85% 10%, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0) 60%),
        linear-gradient(135deg, #0b1220 0%, #0f172a 100%);
    z-index: 0;
}

.hero-v2-title-line {
    display: block; /* force 2 lines */
}

/* Theme-aware hero (dark/light) */
body.dark-mode .hero-v2-bg {
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(20, 184, 166, 0.28) 0%, rgba(20, 184, 166, 0) 60%),
        radial-gradient(800px 500px at 85% 10%, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0) 60%),
        linear-gradient(135deg, #0b1220 0%, #0f172a 100%);
}

body.light-mode .hero-v2-bg {
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(20, 184, 166, 0.18) 0%, rgba(20, 184, 166, 0) 60%),
        radial-gradient(800px 500px at 85% 10%, rgba(59, 130, 246, 0.14) 0%, rgba(59, 130, 246, 0) 60%),
        linear-gradient(135deg, #ffffff 0%, #f6f8ff 100%);
}

body.light-mode .hero-v2-badge {
    background: rgba(17, 24, 39, 0.04);
    border-color: rgba(17, 24, 39, 0.10);
    color: rgba(17, 24, 39, 0.85);
}

body.light-mode .hero-v2-title {
    color: #0f172a;
}

body.light-mode .hero-v2-desc {
    color: rgba(15, 23, 42, 0.8);
}

body.light-mode .hero-v2-note {
    color: rgba(15, 23, 42, 0.65);
}

body.dark-mode .hero-v2-title-accent {
    color: #14B8A6;
}

body.light-mode .hero-v2-title-accent {
    color: #0D9488;
}

.hero-v2-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

.hero-v2-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
}

.hero-v2-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 60ch;
}

.hero-v2-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.hero-v2-btn-primary {
    background: #14B8A6;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25);
}

.hero-v2-btn-primary:hover {
    background: #0D9488;
    transform: translateY(-1px);
}

.hero-v2-btn-secondary {
    border: 1px solid rgb(9 173 155);
    color: #14b8a6;
}

.hero-v2-btn-secondary:hover {
    transform: translateY(-1px);
}

body.light-mode .hero-v2-btn-secondary {
    background: rgb(241 241 241);
}

body.light-mode .hero-v2-btn-secondary:hover {
    background: rgb(219 244 242);
}

body.dark-mode .hero-v2-btn-secondary {
    background: rgb(13 50 59);
}

body.dark-mode .hero-v2-btn-secondary:hover {
    background: rgb(12 57 64);
}

.hero-v2-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .hero-v2-title {
        font-size: 38px;
    }

    .integrate-stack-title {
        font-size: 40px;
    }

    .integrate-stack-desc {
        font-size: 18px;
    }

    .integrate-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 968px) {
    .hero-v2-title {
        font-size: 38px;
    }

    .integrate-stack-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-v2 {
        padding: 52px 0 44px;
    }

    .hero-v2-title {
        font-size: 28px;
    }

    .hero-v2-desc {
        font-size: 15px;
    }

    .integrate-stack-section {
        padding: 60px 0;
    }

    .integrate-stack-title {
        font-size: 32px;
    }

    .integrate-stack-desc {
        font-size: 16px;
    }

    .integrate-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .integrate-stack-card {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .integrate-stack-logo {
        width: 36px;
        height: 36px;
    }

    .integrate-stack-name {
        font-size: 14px;
    }
}

/* Theme-aware integrate stack section */
body.light-mode .integrate-stack-section {
    background: #ffffff;
}

body.light-mode .integrate-stack-title {
    color: #111827;
}

body.light-mode .integrate-stack-title-accent {
    color: #14b8a6;
}

body.light-mode .integrate-stack-desc {
    color: #4B5563;
}

body.light-mode .integrate-stack-card {
    background: #ffffff;
    border-color: #E5E7EB;
}

body.light-mode .integrate-stack-card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.light-mode .integrate-stack-name {
    color: #111827;
}

body.dark-mode .integrate-stack-section {
    background: #111827;
}

body.dark-mode .integrate-stack-title {
    color: #f9fafb;
}

body.dark-mode .integrate-stack-title-accent {
    color: #8cb4ff;
}

body.dark-mode .integrate-stack-desc {
    color: #d1d5db;
}

body.dark-mode .integrate-stack-card {
    background: #1f2937;
    border-color: #374151;
}

body.dark-mode .integrate-stack-card:hover {
    border-color: #4B5563;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background: #374151;
}

body.dark-mode .integrate-stack-name {
    color: #f9fafb;
}

/* Omnichannel Platforms Section */
.omnichannel-section {
    padding: 90px 0;
    background: #f8fafc;
    transition: background-color 0.3s ease;
}

.omnichannel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 48px;
}

.omnichannel-left {
    max-width: 680px;
    min-width: 0;
}

.omnichannel-right {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.omnichannel-hero-image {
    width: min(640px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 36px rgba(17, 24, 39, 0.06));
    transition: transform 450ms cubic-bezier(.2,.8,.2,1), opacity 450ms ease, filter 450ms ease;
    will-change: transform, opacity, filter;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
}

.omnichannel-hero-image.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.omnichannel-right:hover .omnichannel-hero-image.animate,
.omnichannel-hero-image.animate:hover {
    transform: translateY(-10px) scale(1.02) rotate(-0.4deg);
    filter: drop-shadow(0 26px 46px rgba(17, 24, 39, 0.10));
}

@media (prefers-reduced-motion: reduce) {
    .omnichannel-hero-image,
    .omnichannel-hero-image.animate,
    .omnichannel-right:hover .omnichannel-hero-image.animate,
    .omnichannel-hero-image.animate:hover {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.omnichannel-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #6B7280;
    letter-spacing: -0.02em;
}

.omnichannel-title-accent {
    color: #14b8a6;
    font-weight: 700;
}

/* Keep title in a single line on desktop (but allow wrap on smaller screens) */
@media (min-width: 992px) {
    .omnichannel-title {
        white-space: nowrap;
    }
}

.omnichannel-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #6B7280;
    max-width: 520px;
    margin: 0;
}

/* Responsive Omnichannel Section */
@media (max-width: 768px) {
    .omnichannel-section {
        padding: 72px 0;
    }

    .omnichannel-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .omnichannel-right {
        justify-content: center;
    }

    .omnichannel-hero-image {
        width: min(520px, 100%);
        filter: drop-shadow(0 16px 26px rgba(17, 24, 39, 0.06));
    }

    .omnichannel-title {
        font-size: 32px;
    }

    .omnichannel-desc {
        font-size: 15px;
        max-width: 560px;
    }
}

@media (max-width: 480px) {
    .omnichannel-section {
        padding: 56px 0;
    }

    .omnichannel-title {
        font-size: 26px;
    }

    .omnichannel-desc {
        font-size: 14px;
    }
}

/* Theme-aware omnichannel section */
body.light-mode .omnichannel-section {
    background: #f8fafc;
}

body.light-mode .omnichannel-title {
    color: #6B7280;
}

body.light-mode .omnichannel-title-accent {
    color: #14b8a6;
}

body.light-mode .omnichannel-desc {
    color: #6B7280;
}

body.dark-mode .omnichannel-section {
    background: #0b1220;
}

body.dark-mode .omnichannel-title {
    color: rgba(249, 250, 251, 0.82);
}

body.dark-mode .omnichannel-title-accent {
    color: #8cb4ff;
}

body.dark-mode .omnichannel-desc {
    color: rgba(209, 213, 219, 0.86);
}

/* Dark mode: make omnichannel illustration grayscale */
body.dark-mode .omnichannel-hero-image {
    filter: grayscale(1) drop-shadow(0 22px 36px rgba(0, 0, 0, 0.28));
}

body.dark-mode .omnichannel-hero-image.animate {
    filter: grayscale(1) drop-shadow(0 22px 36px rgba(0, 0, 0, 0.28));
}

body.dark-mode .omnichannel-right:hover .omnichannel-hero-image.animate,
body.dark-mode .omnichannel-hero-image.animate:hover {
    filter: grayscale(1) drop-shadow(0 26px 46px rgba(0, 0, 0, 0.38));
}

/* --- Removed: Features Gallery Section CSS (section deleted from index.html) --- */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: transparent;
}

.faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.faq-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 720px;
}

.faq-accordion {
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.10);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-button {
    font-weight: 700;
    padding: 18px 18px;
    box-shadow: none !important;
}

.faq-body {
    padding: 0 18px 18px 18px;
    line-height: 1.7;
}

/* Theme-aware FAQ */
body.light-mode .faq-title {
    color: #111827;
}

body.light-mode .faq-subtitle,
body.light-mode .faq-body {
    color: #4B5563;
}

body.light-mode .faq-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(17, 24, 39, 0.10);
}

body.light-mode .faq-button {
    background: transparent;
    color: #111827;
}

body.light-mode .faq-button:not(.collapsed) {
    color: #0f766e;
}

body.dark-mode .faq-title {
    color: #f9fafb;
}

body.dark-mode .faq-subtitle,
body.dark-mode .faq-body {
    color: rgba(209, 213, 219, 0.9);
}

body.dark-mode .faq-item {
    background: rgba(31, 41, 55, 0.55);
    border-color: rgba(255, 255, 255, 0.10);
}

body.dark-mode .faq-button {
    background: transparent;
    color: #f9fafb;
}

body.dark-mode .faq-button:not(.collapsed) {
    color: #8cb4ff;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 64px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-button {
        padding: 16px 16px;
    }

    .faq-body {
        padding: 0 16px 16px 16px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #111827;
    transition: color 0.3s ease;
}

.features-title-accent {
    color: #14B8A6;
    transition: color 0.3s ease;
}

.features-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 auto;
    max-width: 700px;
    transition: color 0.3s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
    border-color: rgba(20, 184, 166, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #14B8A6;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0.1) 100%);
    transform: scale(1.05);
}

.feature-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
    transition: color 0.3s ease;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 64px 0;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-title {
    font-size: 32px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .feature-name {
        font-size: 18px;
    }

    .feature-desc {
        font-size: 14px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0 40px;
    background: #caf8ff2e;
}

.reviews-header {
    text-align: center;
    margin-bottom: 28px;
}

.reviews-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.reviews-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 760px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(120% 120% at 0% 0%, rgba(20, 184, 166, 0.20) 0%, rgba(255, 255, 255, 0) 55%);
    opacity: 0.9;
    pointer-events: none;
}

.review-card > * {
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
    border-color: rgba(20, 184, 166, 0.35);
}

.review-card-featured {
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 18px 48px rgba(20, 184, 166, 0.16);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.review-stars {
    display: inline-flex;
    gap: 4px;
    font-size: 14px;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(20, 184, 166, 0.35);
    background: rgba(20, 184, 166, 0.10);
}

.review-badge-soft {
    border-color: rgba(140, 180, 255, 0.35);
    background: rgba(140, 180, 255, 0.10);
}

.review-quote {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    flex-shrink: 0;
}

.review-avatar-2 {
    background: linear-gradient(135deg, #8cb4ff 0%, #3b82f6 100%);
}

.review-avatar-3 {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.review-name {
    font-weight: 800;
    line-height: 1.2;
}

.review-role {
    font-size: 13px;
    opacity: 0.85;
}

.reviews-footnote {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 13px;
}

/* Theme-aware Reviews */
body.light-mode .reviews-title {
    color: #111827;
}

body.light-mode .reviews-subtitle,
body.light-mode .review-quote,
body.light-mode .review-role {
    color: #4B5563;
}

body.light-mode .review-name {
    color: #111827;
}

body.light-mode .review-stars {
    color: #f59e0b;
}

body.light-mode .review-badge {
    color: #0f766e;
}

body.light-mode .review-badge-soft {
    color: #1d4ed8;
}

body.light-mode .reviews-pill {
    color: #111827;
}

body.dark-mode .reviews-title {
    color: #f9fafb;
}

body.dark-mode .reviews-subtitle,
body.dark-mode .review-quote,
body.dark-mode .review-role {
    color: rgba(209, 213, 219, 0.9);
}

body.dark-mode .review-name {
    color: #f9fafb;
}

body.dark-mode .review-card {
    background: rgba(31, 41, 55, 0.55);
    border-color: rgba(255, 255, 255, 0.10);
}

body.dark-mode .review-card::before {
    background: radial-gradient(120% 120% at 0% 0%, rgba(140, 180, 255, 0.18) 0%, rgba(17, 24, 39, 0) 55%);
}

body.dark-mode .review-stars {
    color: #fbbf24;
}

body.dark-mode .review-badge {
    color: #8cb4ff;
    border-color: rgba(140, 180, 255, 0.40);
    background: rgba(140, 180, 255, 0.12);
}

body.dark-mode .review-badge-soft {
    color: #2dd4bf;
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(45, 212, 191, 0.10);
}

body.dark-mode .reviews-pill {
    color: #f9fafb;
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(31, 41, 55, 0.55);
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 64px 0 28px;
    }

    .reviews-title {
        font-size: 28px;
    }

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

/* Trusted By Section */
.trusted-by-section {
    padding: 60px 0;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.trusted-by-heading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.brands-logos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brands-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.brands-logos:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-8px);
}

.brand-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: none;
}

/* Integrate With Your Stack Section */
.integrate-stack-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    transition: background 0.3s ease;
}

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

.integrate-stack-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.integrate-stack-title-accent {
    color: #8B5CF6;
    transition: color 0.3s ease;
}

.integrate-stack-desc {
    font-size: 20px;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.integrate-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.integrate-stack-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integrate-stack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #D1D5DB;
}

.integrate-stack-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.integrate-stack-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    transition: color 0.3s ease;
}

/* Modern Footer */
/* Pre-Footer (CTA) */
.site-prefooter {
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.site-prefooter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(20, 184, 166, 0.14) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(140, 180, 255, 0.14) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

.site-prefooter > .site-footer-inner {
    position: relative;
    z-index: 1;
}

.site-footer {
    padding: 64px 0 28px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(20, 184, 166, 0.14) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(140, 180, 255, 0.14) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
    opacity: 1;
}

.site-footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.site-footer > .site-footer-inner {
    position: relative;
    z-index: 1;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-brand-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.footer-brand-tagline {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.85;
}

.footer-cta-card {
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 16px;
    position: relative;
    overflow: hidden;
}

.footer-cta-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(120% 120% at 0% 0%, rgba(20, 184, 166, 0.22) 0%, rgba(255, 255, 255, 0) 55%);
    opacity: 1;
    pointer-events: none;
}

.footer-cta-card > * {
    position: relative;
    z-index: 1;
}

.footer-cta-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 2px;
}

.footer-cta-subtitle {
        font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
}

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

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
}

.footer-btn-primary {
    background: #14b8a6;
    color: #062a27;
    box-shadow: 0 14px 34px rgba(20, 184, 166, 0.25);
}

.footer-btn-primary:hover {
    background: #2dd4bf;
    box-shadow: 0 18px 44px rgba(45, 212, 191, 0.30);
}

.footer-btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.14);
}

.footer-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 22px;
}

.footer-col {
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 16px;
    grid-column: span 3;
}

.footer-col-newsletter {
    grid-column: span 6;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-link {
    display: block;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-note {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

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

.footer-input {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.14);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 12px;
    font-weight: 700;
    outline: none;
}

.footer-btn-submit {
    border: none;
    cursor: pointer;
}

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

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-decoration: none;
    border: 1px solid rgba(17, 24, 39, 0.14);
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.site-footer-bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(17, 24, 39, 0.10);
    font-weight: 700;
    opacity: 0.92;
    /* Full-width bar */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

.site-footer-bottom-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom-left {
    font-weight: 400;
}

.footer-bottom-brand {
    font-weight: 600;
}

body.light-mode .footer-bottom-brand {
    color: #0D9488;
}

body.dark-mode .footer-bottom-brand {
    color: #8cb4ff;
}

.footer-bottom-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-mini-link {
    text-decoration: none;
    font-weight: 400;
    opacity: 0.9;
}

.footer-mini-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Theme-aware Modern Footer */
body.light-mode .site-footer {
    background: #f8fafc;
}

body.light-mode .site-prefooter {
    background: #f8fafc;
}

body.light-mode .footer-brand-name,
body.light-mode .footer-cta-title,
body.light-mode .footer-col-title,
body.light-mode .site-footer-bottom,
body.light-mode .footer-link,
body.light-mode .footer-mini-link {
    color: #111827;
}

body.light-mode .footer-brand-tagline,
body.light-mode .footer-cta-subtitle,
body.light-mode .footer-note {
    color: #4B5563;
}

body.dark-mode .site-footer {
    background: #0b1220;
}

body.dark-mode .site-prefooter {
    background: #0b1220;
}

body.dark-mode .site-prefooter::before {
    opacity: 0.9;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(140, 180, 255, 0.16) 0%, rgba(11, 18, 32, 0) 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(45, 212, 191, 0.14) 0%, rgba(11, 18, 32, 0) 55%);
}

body.dark-mode .site-footer::before {
    opacity: 0.9;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(140, 180, 255, 0.16) 0%, rgba(11, 18, 32, 0) 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(45, 212, 191, 0.14) 0%, rgba(11, 18, 32, 0) 55%);
}

body.dark-mode .footer-brand,
body.dark-mode .footer-cta-card,
body.dark-mode .footer-col {
    background: rgba(31, 41, 55, 0.55);
    border-color: rgba(255, 255, 255, 0.10);
}

body.dark-mode .footer-brand-name,
body.dark-mode .footer-cta-title,
body.dark-mode .footer-col-title,
body.dark-mode .site-footer-bottom,
body.dark-mode .footer-link,
body.dark-mode .footer-mini-link {
    color: #f9fafb;
}

body.dark-mode .footer-brand-tagline,
body.dark-mode .footer-cta-subtitle,
body.dark-mode .footer-note {
    color: rgba(209, 213, 219, 0.9);
}

body.dark-mode .footer-btn-secondary {
    background: rgba(31, 41, 55, 0.6);
    color: #f9fafb;
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .footer-btn-secondary:hover {
    background: rgba(55, 65, 81, 0.7);
}

body.dark-mode .footer-input {
    background: rgba(31, 41, 55, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f9fafb;
}

body.dark-mode .footer-social-btn {
    background: rgba(31, 41, 55, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f9fafb;
}

body.dark-mode .site-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.10);
}

@media (max-width: 992px) {
    .site-footer-top {
        grid-template-columns: 1fr;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-col,
    .footer-col-newsletter {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 56px 0 24px;
    }

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

    .footer-newsletter {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: 60vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-content h1 {
    font-size: 48px;
        margin-bottom: 20px;
    transition: color 0.3s ease;
}

.main-content p {
    font-size: 20px;
    transition: color 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
        padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-icon,
.mobile-close-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.mobile-close-icon {
    width: 18px;
    height: 18px;
    display: none;
}

body.dark-mode .mobile-menu-icon,
body.dark-mode .mobile-close-icon {
    filter: invert(1);
}

.mobile-menu-toggle.active .mobile-menu-icon {
    display: none;
}

.mobile-menu-toggle.active .mobile-close-icon {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-actions {
        gap: 16px;
    }
    
    .btn-trial {
        padding: 9px 18px;
        font-size: 14px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .language-selector-current span {
        display: none;
    }
    
    .language-selector-current .chevron-down {
        display: none;
    }
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 10px 20px;
        gap: 16px;
    }
    
    .logo {
        margin-right: 10px;
    }
    
    /* Keep desktop navbar as-is; mobile menu is separate */
    .nav-links {
        display: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid;
        border-color: rgba(0, 0, 0, 0.1);
        justify-content: space-between;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-actions {
        gap: 10px;
        margin-left: auto;
    }
    
    /* Hide desktop trial button on mobile (menu has its own CTA) */
    .btn-trial {
        display: none !important;
    }
    
    .theme-toggle {
        margin-left: 0;
        padding: 6px;
    }
    
    /* Hide desktop language selector on mobile */
    .language-selector {
        display: none !important;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .main-content h1 {
        font-size: 36px;
    }
    
    .main-content p {
        font-size: 18px;
    }
    
    .trusted-by-section {
        padding: 40px 0;
    }
    
    .trusted-by-heading {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .brands-logos {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .brand-img {
        max-width: 100px;
        max-height: 50px;
    }

}

/* Mobile Nav Menu (separate from desktop) */
.mobile-nav-menu {
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-backdrop {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
    animation: fadeInBackdrop 0.3s ease forwards;
}

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

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

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 90vh;
    }
}

@keyframes slideUpMenu {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 90vh;
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
}

@media (max-width: 768px) {
    .mobile-nav-menu {
        position: sticky;
        top: 62px; /* below main-nav */
        z-index: 1001;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav-menu.active {
        max-height: 90vh;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-inner {
        max-height: calc(100vh - 62px);
        overflow: auto;
    }

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

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav-logo {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .mobile-nav-brand-text {
        font-size: 16px;
        font-weight: 800;
        color: #111827;
        letter-spacing: -0.01em;
    }

    .mobile-nav-header-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-nav-lang {
        font-size: 13px;
        font-weight: 700;
        color: #374151;
    }

    .mobile-nav-close {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        border: none;
        background: transparent;
        display: grid;
        place-items: center;
        color: #111827;
        cursor: pointer;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        padding: 6px 0 14px;
    }

    .mobile-nav-link {
        padding: 14px 16px;
        text-decoration: none;
        color: #374151;
        font-size: 16px;
        font-weight: 400;
    }

    .mobile-nav-link:active,
    .mobile-nav-link:hover {
        background: rgba(20, 184, 166, 0.06);
        color: #14B8A6;
    }

    .mobile-nav-cta {
        margin-top: 6px;
        font-weight: 700;
        color: #14B8A6;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.18);
        z-index: 999;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .btn-trial {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .btn-trial .arrow-right {
        display: none;
    }
    
    .promo-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .register-link {
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
    
    .main-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 10px 0;
    }
    
    .promo-text {
        font-size: 11px;
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .logo {
        margin-right: 8px;
    }
    
    .nav-links {
        width: 100%;
        left: -100%;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .btn-trial {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    .theme-toggle {
        padding: 5px;
    }
    
    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .language-selector {
        padding: 3px 6px;
    }
    
    .flag-icon {
        width: 18px;
        height: 18px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .main-content h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .main-content p {
        font-size: 15px;
    }
    
    .trusted-by-section {
        padding: 24px 0;
    }
    
    .trusted-by-heading {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 12px;
    }
    
    .brands-logos {
        gap: 24px;
        animation-duration: 18s;
    }
    
    .brand-img {
        max-width: 70px;
        max-height: 35px;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

