/* Reset e Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #7c3aed;
    --color-primary-dark: #6d28d9;
    --color-secondary: #64748b;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-header: #f5f0ff;
    --color-bg-lilac: #ede9fe;
    --color-border: #e2e8f0;
    --color-stroke: #1e293b;
    --color-pink: #ec4899;
    --color-pink-light: #fce7f3;
    --font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --container-width: 1280px;
    --container-width-wide: 1440px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-wide {
    width: 100%;
    max-width: var(--container-width-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 1.5px solid var(--color-stroke);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-stroke);
}

.btn-outline:hover {
    background-color: var(--color-bg-alt);
}

.btn-arrow {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.btn-arrow-white {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    color: white;
}

.link-arrow {
    width: 18px;
    height: 18px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-header);
    z-index: 1000;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none;
}

.header::after,
.header::before {
    display: none !important;
    content: none !important;
}

.header .container-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 24px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.dropdown-icon {
    opacity: 0.6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(5px);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background-color: var(--color-bg-header);
    padding-top: 80px;
    padding-bottom: var(--spacing-xl);
    position: relative;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--color-text);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding-top: var(--spacing-lg);
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.text-primary {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    width: 100%;
}

.hero-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-stroke);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: var(--color-bg);
}

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

.hero-privacy {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.hero-privacy a {
    color: var(--color-text);
    text-decoration: underline;
}

.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    background-color: #ffffff;
    border: 1px solid var(--color-primary);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Statement Section */
.statement {
    background-color: var(--color-bg-header);
    padding: var(--spacing-xl) 0;
}

.statement-text {
    font-size: 1.75rem;
    line-height: 1.5;
    text-align: center;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Switch Section */
.why-switch {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-header);
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.section-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

.features-image {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--color-bg);
    border: 1.5px solid var(--color-stroke);
    border-radius: 0.75rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.feature-icon-img img {
    width: 100%;
    height: 100%;
}

.feature-icon-pink {
    background-color: var(--color-pink-light);
    color: var(--color-pink);
}

.feature-icon-purple {
    background-color: var(--color-bg-lilac);
    color: var(--color-primary);
}

.feature-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.feature-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

.feature-link span {
    color: var(--color-pink);
}

/* Automations Section */
.automations {
    padding: var(--spacing-xl) 0 0;
    background-color: var(--color-bg-header);
    position: relative;
}

.automations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.automations-image {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.automations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    background-color: var(--color-bg-lilac);
    border: 1.5px solid var(--color-stroke);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.automations-content h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.automations-lead {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.automations-list {
    list-style: none;
    padding: 0;
}

.automations-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.automations-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text);
}

.wave-divider {
    margin-top: var(--spacing-lg);
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-divider-bottom {
    margin-top: -40px;
}

.wave-divider-bottom svg {
    display: block;
    width: 100%;
    height: 120px;
}

.oval-divider-bottom {
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.oval-divider-bottom svg {
    display: block;
    width: 100%;
    height: 180px;
}

/* Analytics Section */
.analytics {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.analytics-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.analytics-header h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.analytics-header p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.analytics-dashboard {
    margin-bottom: var(--spacing-lg);
}

.dashboard-placeholder {
    background-color: var(--color-bg-alt);
    border: 1.5px solid var(--color-stroke);
    border-radius: 1rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.analytics-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.analytics-feature {
    text-align: center;
    padding: var(--spacing-md);
}

.analytics-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    background-color: var(--color-bg-lilac);
    border: 1.5px solid var(--color-stroke);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-feature-icon img {
    width: 24px;
    height: 24px;
}

.analytics-feature-icon-img {
    width: 46px;
    height: 46px;
    margin: 0 auto var(--spacing-sm);
}

.analytics-feature-icon-img img {
    width: 100%;
    height: 100%;
}

.analytics-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.analytics-feature p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Client Experience Section */
.client-experience {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.client-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.client-experience-content h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.client-experience-list {
    list-style: none;
    padding: 0;
}

.client-experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.client-experience-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.client-experience-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background-color: var(--color-bg-alt);
    border: 1.5px solid var(--color-stroke);
    border-radius: 1rem;
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Integrations Section */
.integrations {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.integrations-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.integrations-header h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.integrations-header p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.integration-logo {
    width: 80px;
    height: 80px;
    border: 1.5px solid var(--color-stroke);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
}

.integration-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Early Access Section */
.early-access {
    padding: var(--spacing-xl) 0;
    background-color: #1e1b4b;
    color: #ffffff;
}

.early-access-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.early-access-header-text {
    max-width: 600px;
}

.early-access-header h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.early-access-header .btn-primary {
    flex-shrink: 0;
}

.early-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.early-access-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.early-access-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.early-access-description {
    color: #c4b5fd;
    margin-bottom: 0;
    line-height: 1.6;
}

.early-access-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.early-access-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.early-access-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    border: 1.5px solid var(--color-stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.early-access-feature-icon-img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.early-access-feature-icon-img img {
    width: 100%;
    height: 100%;
}

.early-access-feature-icon.icon-pink {
    background-color: #ec4899;
    color: #ffffff;
}

.early-access-feature-icon.icon-yellow {
    background-color: #fbbf24;
    color: #ffffff;
}

.early-access-feature-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.early-access-feature-content p {
    font-size: 0.8125rem;
    color: #c4b5fd;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.early-access-feature-content .feature-link {
    color: #ffffff;
}

.early-access-image .image-placeholder {
    background-color: #ffffff;
    border: none;
}

/* FAQ Section */
.faq-wrapper {
    background:
        radial-gradient(ellipse 600px 600px at 0% 50%, rgba(99, 102, 241, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 600px 600px at 100% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 100%),
        #1e1b4b;
}

.faq {
    padding: var(--spacing-xl) 0;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-header h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: #e9e3ff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: inherit;
}

.faq-question:hover {
    color: #c4b5fd;
}

.faq-icon {
    flex-shrink: 0;
    color: #c4b5fd;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon-vertical {
    opacity: 0;
}

.faq-icon-vertical {
    transition: opacity 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #e9e3ff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.faq-answer ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e9e3ff;
}

.faq-answer ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #e9e3ff;
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: var(--spacing-xl) 0;
}

.faq-cta {
    text-align: center;
    background-color: #ffffff;
    padding: var(--spacing-lg);
    border-radius: 1rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.faq-cta h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* Footer Section */
.footer {
    background-color: var(--color-bg-header);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    display: inline-block;
}

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

.footer-nav {
    display: flex;
    gap: var(--spacing-md);
}

.footer-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-newsletter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

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

.footer-input {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--color-stroke);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: var(--color-bg);
    min-width: 220px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

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

.footer-legal {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-text);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.animate-on-scroll.from-left {
    transform: translateX(-30px);
}

.animate-on-scroll.from-left.animated {
    transform: translateX(0);
}

/* Fade in from right */
.animate-on-scroll.from-right {
    transform: translateX(30px);
}

.animate-on-scroll.from-right.animated {
    transform: translateX(0);
}

/* Scale up animation */
.animate-on-scroll.scale-up {
    transform: scale(0.95);
}

.animate-on-scroll.scale-up.animated {
    transform: scale(1);
}

/* Staggered children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children > *.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .stagger-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-bg);
        padding: var(--spacing-sm);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .header-actions {
        display: none;
    }

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

    .hero-content {
        text-align: center;
    }

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

    .hero-form {
        flex-direction: column;
    }

    .hero-input {
        max-width: 100%;
    }

    .features-grid,
    .automations-grid {
        grid-template-columns: 1fr;
    }

    .analytics-features {
        grid-template-columns: 1fr;
    }

    .client-experience-grid {
        grid-template-columns: 1fr;
    }

    .client-experience-image {
        order: -1;
    }

    .early-access-grid {
        grid-template-columns: 1fr;
    }

    .early-access-image {
        order: -1;
    }

    .faq-question {
        font-size: 0.9375rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-newsletter {
        align-items: flex-start;
    }

    .footer-form {
        flex-direction: column;
        width: 100%;
    }

    .footer-input {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
    }
}
