@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
}


:root {
    --primary-color: #ff8432;
    --border-radius: 8px;
    --border: 1.5px solid #e5e7eb;
    --border-color: #e5e7eb;
    --box-shadow: 0 4px 15px rgba(117, 128, 222, .2);
    --box-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.1);
    --sidebar-width: 270px;
    --bg-primary: #ffffff;
    --bg-secondary: #f0f2f5;
    --bg-hero: #f5f5f5;
    --bg-section: #fafafa;
    --bg-dark: #0f1f3d;
    --text-primary: #0a0a0a;
    --text-secondary: #626380cf;
    --heading-color: #231645;
    --text-muted: #5b5768;
    --text-on-dark: #ffffff;
}

[data-theme="dark"] {
    --bg-primary: #111822;
    --bg-secondary: #1a1f2e;
    --bg-hero: #151b28;
    --bg-section: #1a1f2e;
    --bg-dark: #0d1321;
    --text-primary: #e4e6eb;
    --text-secondary: #b0b3b8;
    --heading-color: #e4e6eb;
    --text-muted: #b0b3b8;
    --border-color: #3e4042;
    --border: 1.5px solid var(--border-color);
    --box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    --box-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: var(--bg-secondary);
}

.header {
    width: 100%;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 1000;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    width: 130px;
}

/* Light/dark logo switching */
.logo-light {
    display: inline-block;
}
.logo-dark {
    display: none;
}
[data-theme="dark"] .logo-light {
    display: none;
}
[data-theme="dark"] .logo-dark {
    display: inline-block;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.header-link a {
    font-size: 15px;
    font-weight: 500;
    color: var(--heading-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary-color);
    font-size: 24px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    width: 100%;
    padding: 0;
    background-color: var(--bg-primary);
    border-top: 1px solid transparent;
    box-shadow: var(--box-shadow-card);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    z-index: 999;
}

.mobile-menu-list {
    padding: 0 5%;
}

.mobile-menu.active {
    max-height: 500px;
    padding: 20px 0;
    opacity: 1;
    transform: translateY(0);
    border-top-color: var(--border-color);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-item:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu-item:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-item a:hover {
    color: var(--primary-color);
}

.mobile-menu-item a i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.mobile-menu-toggle {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.btn {
    height: 48px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.btn i {
    font-size: 18px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    box-shadow: var(--box-shadow);
}

.hero {
    background-color: var(--bg-hero);
    background-image: url('https://cdn.prod.website-files.com/68a629b0662a6fa63789bcfe/68a63695faa8385a0e6d03f4_Background%20Pattern.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-tags {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    gap: 12px;
    margin-bottom: 24px;
    background-color: var(--bg-primary);
    box-shadow: var(--box-shadow);
    border-radius: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.hero-tag:hover {
    transform: translateY(-2px);
}

.hero-tag-new {
    background-color: #2563eb;
    color: var(--text-on-dark);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-secondary {
    background-color: var(--bg-primary);
    color: var(--heading-color);
    border: 2px solid var(--border-color);
}

.btn-hero-secondary:hover {
    border-color: var(--heading-color);
    background-color: var(--bg-section);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary i,
.btn-hero-secondary i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i,
.btn-hero-secondary:hover i {
    transform: translateX(4px);
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: var(--box-shadow);
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.h-full {
    height: 100%;
}

.stats {
    padding: 50px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stats-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.stats-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-text h3 {
    color: var(--heading-color);
    font-size: 20px;
}

.stats-text p {
    white-space: nowrap;
    font-size: 14px;
    color: var(--heading-color);
}

.about-section {
    width: 100%;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 100px;
    padding: 4px 12px 4px 10px;
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header .title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header .desc {
    color: var(--text-muted);
    font-size: 15px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-item {
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.about-item.active {
    opacity: 1;
}

.about-item.active .about-title {
    color: var(--primary-color);
}

.about-item:hover {
    opacity: 1;
}

.about-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.about-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.about-item.active .about-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.about-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
}

.about-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-image: linear-gradient(#f5f4ff, var(--bg-dark));
    padding: 40px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.about-image.fade-out {
    opacity: 0;
}

.about-image.fade-in {
    opacity: 1;
}

.features {
    padding: 100px;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.features-card {
    padding: 20px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.features-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(74, 58, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #f5f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.feature-text h3 {
    color: var(--heading-color);
    font-size: 20px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.automation-section {
    padding: 100px 0;
    width: 100%;
    background-color: var(--bg-section);
}

.automation-cards-container {
    position: relative;
    height: 2000px;
}

.automation-card {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 30px;
    border-radius: 32px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.automation-card:nth-child(1) {
    background-image: linear-gradient(#e0f2fe, #0ea5e9);
}

.automation-card:nth-child(2) {
    background-image: linear-gradient(#fff5f0, #ffd4b3);
}

.automation-card:nth-child(3) {
    background-image: linear-gradient(#f0f9ff, #b3e5fc);
}

.automation-card:nth-child(4) {
    background-image: linear-gradient(#f3e8ff, #d4b3ff);
}

[data-theme="dark"] .automation-card:nth-child(1) {
    background-image: linear-gradient(#0f172a, #1e293b);
}

[data-theme="dark"] .automation-card:nth-child(2) {
    background-image: linear-gradient(#451a03, #7c2d12);
}

[data-theme="dark"] .automation-card:nth-child(3) {
    background-image: linear-gradient(#0f172a, #1d4ed8);
}

[data-theme="dark"] .automation-card:nth-child(4) {
    background-image: linear-gradient(#1e1b4b, #4c1d95);
}

.automation-card:last-child {
    margin-bottom: 0;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(74, 58, 255, 0.15);
}

.automation-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.automation-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
    margin: 0;
}

.automation-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.automation-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.automation-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--heading-color);
}

[data-theme="dark"] .automation-title,
[data-theme="dark"] .automation-desc,
[data-theme="dark"] .automation-feature-item {
    color: #ffffff;
}

.automation-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 58, 255, 0.1);
}

.automation-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.integration-section {
    width: 100%;
    padding: 100px 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.integration-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
}

.integration-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.integration-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.integration-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.integration-text p {
    font-size: 14px;
    color: var(--heading-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-switch input {
    display: none;
}

.toggle-label {
    display: block;
    position: relative;
    width: 70px;
    height: 35px;
    border-radius: 35px;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-text {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    transition: opacity 0.3s ease;
}

.toggle-switch input:not(:checked) + .toggle-label {
    background-color: #6b7280;
}

.toggle-switch input:not(:checked) + .toggle-label::after  {
    transform: translateX(-35px);
}

.toggle-switch input:not(:checked) + .toggle-label .toggle-text {
    opacity: 0;
}

.toggle-switch input:not(:checked) + .toggle-label::before  {
    content: 'Off';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    transition: opacity 0.3s ease;
}

.reviews-section {
    padding: 100px 0;
    width: 100%;
    background-color: var(--bg-section);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(15, 31, 61, 0.15);
    transform: translateY(-4px);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.review-rating i {
    font-size: 18px;
    color: #f59e0b;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar i {
    font-size: 24px;
    color: var(--text-on-dark);
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.review-role {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 24px;
    }
}

.steps {
    background-color: var(--bg-dark);
    padding: 100px 0;
    color: var(--text-on-dark);
}

.steps .subtitle {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.steps .desc {
    color: var(--text-on-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.steps-card {
    padding: 20px 24px 24px;
    background-color: var(--bg-primary);
    border-radius: 14px;
}

.steps-card h3 {
    color: var(--heading-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.steps-card p {
    font-size: 14px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.step-image img {
    width: 100%;
}

.faq {
    padding: 100px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding-top: 0;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cta {
    padding: 100px 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.cta .subtitle {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.cta .desc {
    color: var(--text-on-dark);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-white {
    background-color: var(--bg-primary);
    color: var(--primary-color);
    border: 2px solid var(--bg-primary);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-on-dark);
    border: 2px solid var(--text-on-dark);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-on-dark);
}

.footer {
    padding: 100px 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo {
    width: 130px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-list li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.website-link {
    color: #4a3aff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-icon i {
    font-size: 20px;
}

/* Scroll Animation Styles - Pure CSS */
section:not(.hero) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section:not(.hero).animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.stats-card,
.features-card,
.integration-card,
.steps-card,
.faq-item,
.automation-card,
.review-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-card.animate,
.features-card.animate,
.integration-card.animate,
.steps-card.animate,
.faq-item.animate,
.automation-card.animate,
.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for cards */
.stats-card:nth-child(1) { transition-delay: 0.1s; }
.stats-card:nth-child(2) { transition-delay: 0.2s; }
.stats-card:nth-child(3) { transition-delay: 0.3s; }
.stats-card:nth-child(4) { transition-delay: 0.4s; }

.features-card:nth-child(1) { transition-delay: 0.1s; }
.features-card:nth-child(2) { transition-delay: 0.2s; }
.features-card:nth-child(3) { transition-delay: 0.3s; }
.features-card:nth-child(4) { transition-delay: 0.4s; }
.features-card:nth-child(5) { transition-delay: 0.5s; }
.features-card:nth-child(6) { transition-delay: 0.6s; }

.integration-card:nth-child(1) { transition-delay: 0.1s; }
.integration-card:nth-child(2) { transition-delay: 0.2s; }
.integration-card:nth-child(3) { transition-delay: 0.3s; }
.integration-card:nth-child(4) { transition-delay: 0.4s; }
.integration-card:nth-child(5) { transition-delay: 0.5s; }
.integration-card:nth-child(6) { transition-delay: 0.6s; }

.steps-card:nth-child(1) { transition-delay: 0.1s; }
.steps-card:nth-child(2) { transition-delay: 0.2s; }
.steps-card:nth-child(3) { transition-delay: 0.3s; }

.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.2s; }
.review-card:nth-child(3) { transition-delay: 0.3s; }
.review-card:nth-child(4) { transition-delay: 0.4s; }
.review-card:nth-child(5) { transition-delay: 0.5s; }
.review-card:nth-child(6) { transition-delay: 0.6s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }

.automation-card:nth-child(1) { transition-delay: 0.1s; }
.automation-card:nth-child(2) { transition-delay: 0.2s; }
.automation-card:nth-child(3) { transition-delay: 0.3s; }
.automation-card:nth-child(4) { transition-delay: 0.4s; }

.cta,
.footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta.animate,
.footer.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero content animations */
.hero-tags {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    color: var(--text-primary);
}

.hero-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
    color: var(--text-primary);
}

.hero-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.hero-tags.animate,
.hero-title.animate,
.hero-description.animate,
.hero-buttons.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Legal, Privacy, Support content pages - theme-aware */
.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
}

.legal-page .page-title,
.support-page .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.legal-page .page-date,
.support-page .page-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-page .page-body,
.support-page .page-body {
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-page .page-body section,
.support-page .page-body section {
    margin-bottom: 2.5rem;
}

.legal-page .page-body h2,
.support-page .page-body h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.legal-page .page-body h3,
.support-page .page-body h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.legal-page .page-body ul,
.legal-page .page-body ol,
.support-page .page-body ul,
.support-page .page-body ol {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.legal-page .page-body p,
.support-page .page-body p {
    margin: 0 0 0.5em;
}

.legal-page .page-body p.page-contact-detail,
.support-page .page-body p.page-contact-detail {
    margin-top: 0.5rem;
}

.legal-page .page-body a,
.support-page .page-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page .page-body a:hover,
.support-page .page-body a:hover {
    text-decoration: underline;
}

.support-page .contact-box {
    background-color: var(--bg-section);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.support-page .contact-box p {
    margin-bottom: 0.5rem;
}

.support-page .contact-box p:last-child {
    margin-bottom: 0;
}

/* ============================================================ */
/* MODERN HEADER OVERRIDES (sticky + glass + sun/moon toggle)   */
/* ============================================================ */

.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
    z-index: 1000;
}
[data-theme="dark"] .header {
    background-color: rgba(17, 24, 34, .8);
}
.header.is-scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .04), 0 8px 30px rgba(15, 23, 42, .04);
}
[data-theme="dark"] .header.is-scrolled {
    box-shadow: 0 1px 0 rgba(255, 255, 255, .04), 0 8px 30px rgba(0, 0, 0, .3);
}
.header .container {
    max-width: 1240px;
    width: calc(100% - 48px);
}
.header-row { padding: 8px 0; }
.header .logo { width: 105px; }

.header-link { gap: 32px; }
.header-link a {
    position: relative;
    padding: 8px 2px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s ease;
}
.header-link a:hover { color: var(--heading-color); }
.header-link a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width .25s ease, left .25s ease;
    border-radius: 2px;
}
.header-link a:hover::after { width: 60%; left: 20%; }

.header-actions { gap: 12px; }
.header-actions .btn {
    height: 36px;
    padding: 0 14px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 9px;
    box-shadow: none;
    gap: 6px;
}
.header-actions .btn i { font-size: 15px; }
.header-actions .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    border: 1px solid var(--border-color);
}
.header-actions .btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--heading-color);
}
.header-actions .btn-primary {
    background-color: var(--heading-color);
    color: var(--bg-primary);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .14);
}
[data-theme="dark"] .header-actions .btn-primary {
    background-color: #ffffff;
    color: #0b1220;
}
.header-actions .btn-primary i { transition: transform .25s ease; }
.header-actions .btn-primary:hover { transform: translateY(-2px); }
.header-actions .btn-primary:hover i { transform: translateX(3px); }

/* ----- Sun / Moon theme switch ------------------------------ */
.theme-switch {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.theme-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.theme-switch-track {
    display: block;
    position: relative;
    width: 56px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #87cefa 0%, #fcd34d 100%);
    transition: background .5s ease;
    overflow: hidden;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .06);
}
.theme-switch input:checked + .theme-switch-track {
    background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%);
}
.theme-switch-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 28%, rgba(255, 255, 255, .9) 0 1.4px, transparent 1.4px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, .7) 0 1px, transparent 1px),
        radial-gradient(circle at 82% 60%, rgba(255, 255, 255, .6) 0 .8px, transparent .8px),
        radial-gradient(circle at 90% 35%, rgba(255, 255, 255, .55) 0 .6px, transparent .6px);
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.theme-switch input:checked + .theme-switch-track .theme-switch-stars {
    opacity: 1;
}
.theme-switch-bg-sun,
.theme-switch-bg-moon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    pointer-events: none;
    transition: opacity .35s ease;
}
.theme-switch-bg-sun {
    left: 8px;
    color: #fef3c7;
    opacity: 1;
}
.theme-switch-bg-moon {
    right: 8px;
    color: #c7d2fe;
    opacity: 0;
}
.theme-switch input:checked + .theme-switch-track .theme-switch-bg-sun {
    opacity: 0;
}
.theme-switch input:checked + .theme-switch-track .theme-switch-bg-moon {
    opacity: 1;
}
.theme-switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25), 0 1px 2px rgba(0, 0, 0, .15);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), background .4s ease;
}
.theme-switch-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    line-height: 1;
    transition: opacity .25s ease, transform .35s ease;
}
.theme-switch-thumb .thumb-icon-sun {
    color: #f59e0b;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}
.theme-switch-thumb .thumb-icon-moon {
    color: #1e1b4b;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}
.theme-switch input:checked + .theme-switch-track .theme-switch-thumb {
    transform: translateX(28px);
    background: #fef3c7;
}
.theme-switch input:checked + .theme-switch-track .theme-switch-thumb .thumb-icon-sun {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}
.theme-switch input:checked + .theme-switch-track .theme-switch-thumb .thumb-icon-moon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}
.theme-switch:hover .theme-switch-thumb {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.theme-switch:focus-within .theme-switch-track {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* ----- Mobile menu refinement ------------------------------- */
.mobile-menu {
    background-color: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
}
[data-theme="dark"] .mobile-menu {
    background-color: rgba(17, 24, 34, .96);
}
.mobile-menu-item a {
    border-radius: 10px;
    margin: 2px 0;
    transition: background .2s ease, color .2s ease;
}
.mobile-menu-item a:hover {
    background: var(--bg-secondary);
}
.mobile-menu-item a i.ti-chevron-right,
.mobile-menu-item a i.ti-arrow-right {
    color: var(--text-muted);
    transition: transform .25s ease, color .25s ease;
}
.mobile-menu-item a:hover i.ti-chevron-right,
.mobile-menu-item a:hover i.ti-arrow-right {
    color: var(--primary-color);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .header .container { width: calc(100% - 32px); }
    .header-row { padding: 12px 0; }
    .header-actions .btn { display: none; }
    .header-actions .btn.btn-primary { display: inline-flex; }
    .header-link { display: none; }
}
@media (max-width: 540px) {
    .header-actions .btn { display: none; }
}

/* ============================================================ */
/* MODERN FOOTER (.footer-v2)                                   */
/* ============================================================ */

.footer.footer-v2 {
    position: relative;
    padding: 96px 0 36px;
    background:
        radial-gradient(900px 400px at 85% 0%, rgba(76, 69, 224, .25), transparent 60%),
        radial-gradient(700px 360px at 10% 100%, rgba(0, 180, 255, .18), transparent 60%),
        linear-gradient(180deg, #0b1220 0%, #0a0e1a 100%);
    color: #cbd5e1;
    border-top: none;
    overflow: hidden;
}
.footer.footer-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .05) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: .6;
}
.footer.footer-v2 .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    width: calc(100% - 48px);
}
.footer-glow {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 69, 224, .8) 30%, rgba(0, 180, 255, .8) 70%, transparent 100%);
    z-index: 1;
}

.footer-v2 .footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2.2fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-v2 .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-v2 .footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin: 0;
}
.footer-v2 .footer-logo {
    width: 130px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-v2 .footer-logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
}
.footer-v2 .footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(203, 213, 225, .8);
    margin: 0;
    max-width: 420px;
}
.footer-v2 .footer-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(22, 196, 127, .12);
    border: 1px solid rgba(22, 196, 127, .25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #4ade80;
    width: fit-content;
}
.footer-v2 .footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16c47f;
    box-shadow: 0 0 0 4px rgba(22, 196, 127, .2);
    animation: footerPulse 2.4s ease-in-out infinite;
}
@keyframes footerPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(22, 196, 127, .2); }
    50%      { box-shadow: 0 0 0 8px rgba(22, 196, 127, 0); }
}

.footer-v2 .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.footer-v2 .footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(203, 213, 225, .8);
    text-decoration: none;
    font-size: 16px;
    transition: all .25s ease;
}
.footer-v2 .footer-social-icon:hover {
    background: rgba(76, 69, 224, .2);
    border-color: rgba(76, 69, 224, .4);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-v2 .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 36px;
}
.footer-v2 .footer-col-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .5);
    margin: 0 0 18px;
}
.footer-v2 .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-v2 .footer-col ul li a {
    color: rgba(203, 213, 225, .85);
    font-size: 14.5px;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
}
.footer-v2 .footer-col ul li a::before {
    content: "";
    width: 0;
    height: 1px;
    background: currentColor;
    margin-right: 0;
    transition: width .25s ease, margin-right .25s ease;
}
.footer-v2 .footer-col ul li a:hover {
    color: #ffffff;
}
.footer-v2 .footer-col ul li a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-v2 .footer-col-cta {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 22px;
}
.footer-v2 .footer-col-cta .footer-col-title { margin-bottom: 10px; }
.footer-v2 .footer-col-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(203, 213, 225, .8);
    margin: 0 0 18px;
}
.footer-v2 .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #ffffff;
    color: #0b1220;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    width: fit-content;
}
.footer-v2 .footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, .15);
}
.footer-v2 .footer-cta-btn i { font-size: 16px; transition: transform .25s ease; }
.footer-v2 .footer-cta-btn:hover i { transform: translateX(3px); }

.footer-v2 .footer-payments {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-v2 .footer-payments-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: 10px;
}
.footer-v2 .footer-payments-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.footer-v2 .footer-pay {
    font-size: 12px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    color: rgba(203, 213, 225, .85);
    font-weight: 500;
}

.footer-v2 .footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: none;
}
.footer-v2 .footer-copyright {
    font-size: 13.5px;
    color: rgba(203, 213, 225, .55);
    margin: 0;
}
.footer-v2 .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13.5px;
}
.footer-v2 .footer-bottom-links a {
    color: rgba(203, 213, 225, .65);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-v2 .footer-bottom-links a:hover { color: #ffffff; }
.footer-v2 .footer-sep { color: rgba(255, 255, 255, .25); }

.footer-v2 .footer-scrolltop {
    position: absolute;
    bottom: 36px;
    right: 36px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .25s ease;
    z-index: 2;
    font-size: 18px;
}
.footer-v2 .footer-scrolltop:hover {
    background: rgba(76, 69, 224, .3);
    border-color: rgba(76, 69, 224, .5);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .footer-v2 .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-v2 .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer-v2 .footer-col-cta { grid-column: span 2; }
}
@media (max-width: 640px) {
    .footer.footer-v2 { padding: 64px 0 28px; }
    .footer-v2 .footer-cols { grid-template-columns: 1fr; }
    .footer-v2 .footer-col-cta { grid-column: span 1; }
    .footer-v2 .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-v2 .footer-scrolltop { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}
