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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Header */
.header {
    padding: 20px 0;
    background-color: #ffffff;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

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

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

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

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 15px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover {
    color: #dc2626;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666666;
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 2px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    white-space: nowrap;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #2d2d2d;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #ffffff;
    color: #dc2626;
}

.header-cta {
    display: flex;
    gap: 12px;
}

.nav-cta-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.nav-cta-mobile .btn {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

a.btn,
a.btn:hover,
a.btn:focus,
a.btn:active,
a.btn:visited {
    text-decoration: none;
}

.btn-primary {
    background-color: #2d2d2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2d2d2d;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background-color: #ffffff;
}

.btn-login {
    background-color: #ffffff;
    color: #dc2626;
    border: 1px solid #dc2626;
}

.btn-login:hover {
    background-color: #fef2f2;
}

.btn-early-access {
    background-color: #dc2626;
    color: #ffffff;
    border: 1px solid #dc2626;
}

.btn-early-access:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.btn-full {
    width: 100%;
    margin-top: 20px;
}

.play-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 12px;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 80px 0 60px;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.title-bold-black {
    color: #000000;
    font-weight: 700;
}

.title-bold-grey {
    color: #666666;
    font-weight: 700;
}

.hero-description {
    font-size: 20px;
    color: #666666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-visual {
    margin-top: 60px;
}

.dashboard-placeholder {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2d2d2d;
    margin-bottom: 48px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.logo-item {
    padding: 20px 24px;
    min-width: 0;
    flex: 1 1 0;
    max-width: 200px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    vertical-align: middle;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.features-title {
    font-size: 40px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 40px;
}

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

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 96px;
    height: 104px;
    min-height: 104px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.feature-icon-small {
    width: 72px;
    height: 72px;
    min-height: 104px;
    align-items: flex-end;
}

.feature-icon-large {
    width: 104px;
    height: 104px;
    min-height: 104px;
    align-items: flex-end;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
    text-align: left;
    min-height: 2.6em;
    line-height: 1.25;
}

.feature-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: left;
}

.feature-visual-wrapper {
    width: 100%;
    height: 220px;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(100, 100, 100, 0.1);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-visual-instant {
    object-position: center center;
}

/* Workflow Section - FIXED */
.workflow {
    padding: 80px 0;
    background-color: #ffffff;
}

.workflow-subtitle-top {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 12px;
}

.workflow-title {
    font-size: 40px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 40px;
}

.workflow-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.workflow-tab {
    padding: 10px 24px;
    border: 1px solid #dc2626;
    border-radius: 24px;
    background-color: #f5f5f5;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.workflow-tab:hover {
    background-color: #f5f5f5;
}

.workflow-tab.active {
    background-color: #dc2626;
    color: #ffffff;
}

.workflow-panels {
    position: relative;
    min-height: 500px;
}

.workflow-content.workflow-panel {
    display: none !important;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background-color: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.workflow-content.workflow-panel.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}

.workflow-tab {
    cursor: pointer;
}

.workflow-diagram {
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-diagram-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.diagram-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diagram-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.diagram-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.diagram-icon {
    font-size: 18px;
}

.diagram-label {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.diagram-text {
    font-size: 13px;
    color: #666666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.diagram-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.diagram-tag {
    background-color: #ffffff;
    color: #666666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.diagram-arrow {
    text-align: center;
    color: #999999;
    font-size: 20px;
    font-weight: 300;
    margin: 4px 0;
}

.diagram-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    margin-top: 8px;
    padding-top: 12px;
}

.diagram-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 12px;
    background-color: #d0d0d0;
}

.diagram-split::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d0d0d0;
}

.diagram-branch {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.condition-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
}

.workflow-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.workflow-description-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.workflow-description-text {
    font-size: 16px;
    color: #2d2d2d;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #fafafa;
}

.pricing-title {
    font-size: 40px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
}

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

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: #2d2d2d;
    border-width: 2px;
}

.pricing-card.featured .plan-price {
    color: #dc2626;
}

.pricing-card.featured .btn-primary {
    background-color: #dc2626;
    color: #ffffff;
    border: 1px solid #dc2626;
}

.pricing-card.featured .btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 32px;
}

.plan-price span {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkmark {
    color: #dc2626;
    font-weight: bold;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-title {
    font-size: 40px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    padding: 0;
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #dc2626;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer {
    font-size: 15px;
    color: #000000;
    padding-left: 0;
    line-height: 1.6;
}

/* Bottom CTA Section */
.cta-bottom {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-title-line1 {
    display: block;
    color: #2d2d2d;
}

.cta-title-line2 {
    display: block;
    color: #666666;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

.cta-input:focus {
    outline: none;
    border-color: #dc2626;
}

#waitlistMessage.waitlist-message-box {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid #d1fae5;
    background-color: #ecfdf5;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#waitlistMessage.waitlist-message-box-error {
    border-color: #fecaca;
    background-color: #fef2f2;
}

.btn-cta-red {
    background-color: #dc2626;
    color: #ffffff;
    border: 1px solid #dc2626;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-red:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #ffffff;
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-copyright {
    font-size: 14px;
    color: #2d2d2d;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-divider {
    color: #999999;
    font-size: 14px;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0;
}

.social-icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    filter: invert(1); /* makes SVG icons white */
}

.social-icon.x img {
    transform: scale(1.15);
}

.social-icon:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}
/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 16px 0;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        margin-left: 16px;
        margin-top: 8px;
        margin-bottom: 8px;
        display: none;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 0;
        font-size: 14px;
    }

    .header-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: flex;
    }

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

    .workflow-content.workflow-panel.active {
        grid-template-columns: 1fr;
    }

    .workflow-tabs {
        gap: 8px;
    }

    .workflow-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .workflow-diagram {
        padding: 24px;
    }

    .workflow-description-title {
        font-size: 24px;
    }

    .hero-title {
        font-size: 40px;
    }

    .features-title,
    .workflow-title,
    .pricing-title,
    .faq-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 42px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-logos {
        gap: 16px;
    }

    .logo-item {
        min-width: 120px;
        padding: 16px 24px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .logo-img {
        height: 32px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .trust-logos {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .logo-item {
        width: 100%;
        min-width: auto;
        height: 70px;
        padding: 16px 24px;
    }
    
    .partner-logo {
        height: 50px;
        max-width: 160px;
    }

    .features {
        padding: 60px 0;
    }

    .workflow {
        padding: 60px 0;
    }

    .features-title,
    .workflow-title {
        font-size: 28px;
    }

    .workflow-subtitle-top {
        font-size: 14px;
    }

    .workflow-tabs {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .workflow-tab {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .workflow-diagram {
        padding: 20px;
    }

    .diagram-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .workflow-description-title {
        font-size: 22px;
    }

    .pricing {
        padding: 60px 0;
    }

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

    .faq {
        padding: 60px 0;
    }

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

    .faq-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-bottom {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 36px;
    }

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

    .cta-input {
        width: 100%;
    }

    .footer {
        padding: 32px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .dashboard-placeholder {
        border-radius: 8px;
    }

}