/*
 * Landing Page Styles
 * Standalone styles for conversion-focused landing pages
 */

:root {
    --zynk-green: #5BF4AE;
    --zynk-yellow: #f9bd48;
    --zynk-purple: #CD71FD;
    --zynk-blue: #5DBEF5;
    --zynk-white: #FbF6F6;
    --bg-black: #07060C;
    --input-bg: #1a1a1a;
    --input-border: #333333;
}

body.landing-page {
    background-color: var(--bg-black);
    color: var(--zynk-white);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.landing-container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

/* Logo Link Styling */
.logo-link {
    display: inline-block;
    text-decoration: none;
    border: none;
}

/* Logo Image Styling */
.landing-container .logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.integrationlogos {
    margin: 1rem 0 2rem 0;
}

.integrationlogos img {
    position: relative;
    z-index: 10;
    background-color: var(--bg-black);
}

/* Typography */
.landing-container h1 {
    color: var(--zynk-green) !important;
    font-weight: normal;
    font-size: 2.25rem !important;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Subheading Styling */
.subheadline {
    font-size: 1.5rem;
    color: var(--zynk-white);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 2rem;
    opacity: 0.9;
}


/* Feature List Styling */
.list-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: var(--zynk-white);
    font-weight: 500;
}

/* Custom checkmark styling */
.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: -5px;
    color: var(--zynk-green);
    font-weight: 900;
    font-size: 1.7rem;
}

/* Target the first checkmark (Yellow) */
.feature-list li:nth-child(1)::before {
    color: var(--zynk-yellow);
}

/* Target the second checkmark (Purple) */
.feature-list li:nth-child(2)::before {
    color: var(--zynk-purple);
}

/* Target the third checkmark (Blue) */
.feature-list li:nth-child(3)::before {
    color: var(--zynk-blue);
}

/* Form Styling */
.integration-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.form-group {
    text-align: left;
}

.landing-container label {
    display: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zynk-white);
}

.landing-container input[type="text"],
.landing-container input[type="email"] {
    width: 100%;
    padding: 16px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 38px;
    color: var(--zynk-white);
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.landing-container input:focus {
    outline: none;
    border-color: var(--zynk-green);
}

.landing-container input.is-invalid {
    border-color: #dc3545;
}

.landing-container .text-danger {
    display: block;
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-left: 18px;
}

/* Button Styling */
.landing-container button[type="button"] {
    background-color: var(--zynk-green);
    color:var(--bg-black);
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    margin-top: 0.5rem;
    transition: filter 0.3s ease, transform 0.1s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.landing-container button[type="button"]:hover {
    filter: brightness(90%);
    box-shadow: 0 0 100px rgba(91, 244, 174, 0.5);
}

.landing-container button[type="button"]:active {
    transform: scale(0.98);
}

/* Flow Animation */
.integrationlogos.flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.flow-container {
    width: 100px;
    height: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1;
    margin-left: -5px;
    margin-right: -5px;
}

.flow-line {
    width: 100%;
    height: 2px;
    background: rgba(91, 244, 174, 0.15);
    position: relative;
    overflow: visible !important;
}

.pulse {
    position: absolute;
    height: 100%;
    width: 15px;
    background: linear-gradient(to right, transparent, var(--zynk-green), #fff, var(--zynk-green), transparent);
    filter: drop-shadow(0 0 25px var(--zynk-green)) drop-shadow(0 0 35px var(--zynk-green));
    z-index: 2;
}

/* Left to Right Animation */
.ltr {
    animation: flow-right 0.9s infinite linear;
}

/* Right to Left Animation */
.rtl {
    animation: flow-left 0.7s infinite linear;
}

@keyframes flow-right {
    0% {
        left: -30px;
    }
    100% {
        left: 100%;
    }
}

@keyframes flow-left {
    0% {
        right: -30px;
    }
    100% {
        right: 100%;
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .landing-container h1 {
        font-size: 1.8rem !important;
    }

    .landing-container {
        padding: 1.5rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .feature-list li {
        font-size: 1.25rem;
        padding-left: 35px;
    }

    .feature-list li::before {
        font-size: 1.4rem;
    }

    .landing-container input[type="text"],
    .landing-container input[type="email"],
    .landing-container button[type="button"] {
        font-size: 1.25rem;
    }
}

