@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;
}

.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);
}

.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);
}

.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;
}
