﻿body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f7fafc;
    color: #222e3a;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem; /* Add some padding for smaller screens */
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(79,142,247,0.03);
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1976d2;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-block;
    transform: translateY(4px);
}

.logo-group {
    display: flex;
    align-items: center;
    cursor: pointer
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

    .nav-links a {
        color: #3a3a3e;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #1976d2;
        }

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    border: 1.5px solid #1976d2;
    color: #4f8ef7;
    background: transparent;
    padding: 0.5rem 1.3rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
    font-size: 1rem;
}

    .btn-outline:hover {
        background: #e7f0fe;
    }

.btn-primary {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 0.5rem 1.3rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(79,142,247,.06);
}

    .btn-primary:hover {
        background: #346ede;
    }

.hero {
    background: #f7fafc;
    text-align: center;
    padding: 4rem 0 3rem;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin: 1rem 0 0.7rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: #5d6573;
    margin: 0 0 2.2rem;
}

.yc-badge {
    display: inline-block;
    background: #e7f0fe;
    color: #4f8ef7;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.22rem 0.85rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 0.68rem 2.5rem;
    position: relative;
    overflow: hidden;
}

    .hero-btn:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 8px rgba(79, 142, 247, 0.3);
    }

    .hero-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
        transform: skewX(-20deg);
    }

    /* Trigger the animation on page load */
    .hero-btn.animate-shine::before {
        animation: shine 1s ease-in-out 1;
    }

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}



.features {
    background: #f7fafc;
    padding: 3rem 0 2.3rem;
    text-align: center;
}

    .features h2 {
        color: #194775;
        font-size: 1.6rem;
        margin-bottom: 2rem;
        font-weight: 600;
    }

.features-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1 1 230px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(79,142,247,0.06);
    padding: 2.1rem 1.4rem 1.5rem;
    margin: 1rem 0;
    min-width: 230px;
    max-width: 320px;
    text-align: center;
    transition: box-shadow .2s;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 24px rgba(79,142,247,0.14);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #e7f0fe;
    margin: 0 auto 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: center;
}

    .feature-icon.create {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23194775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'%3E%3C/path%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'%3E%3C/path%3E%3C/svg%3E");
    }

    .feature-icon.analytics {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23194775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'%3E%3C/path%3E%3Cpath d='M18 17V9'%3E%3C/path%3E%3Cpath d='M13 17V5'%3E%3C/path%3E%3Cpath d='M8 17v-3'%3E%3C/path%3E%3C/svg%3E");
    }

    .feature-icon.anonymity {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23194775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='12' cy='16' r='1'%3E%3C/circle%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'%3E%3C/path%3E%3C/svg%3E");
    }

    .feature-icon.email {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23194775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
    }

    .feature-icon.export {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23194775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E");
    }

    .feature-icon.templates {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23194775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='3' y1='9' x2='21' y2='9'%3E%3C/line%3E%3Cline x1='9' y1='21' x2='9' y2='9'%3E%3C/line%3E%3C/svg%3E");
    }

.feature-card h3 {
    margin: 0.1rem 0 0.7rem;
    font-size: 1.07rem;
    color: #164b90;
    font-weight: 600;
}

.feature-card p {
    color: #58616f;
    font-size: 1rem;
    margin: 0;
}


.api-section {
    background: #fff;
    padding: 3rem 0 2.8rem;
    text-align: center;
}

.api-content h2 {
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
    color: #144e94;
}

.code-block {
    background: #f8fbfe;
    padding: 1.1rem;
    border-radius: 8px;
    font-family: 'Fira Mono', 'Consolas', mono;
    font-size: 0.98rem;
    text-align: left;
    color: #3b4e61;
    max-width: 500px;
    margin: 0 auto 1.3rem;
    overflow-x: auto;
    box-shadow: 0 2px 10px rgba(79,142,247,.05);
    position: relative;
}

.btn-copy {
    background: #e7f0fe;
    color: #4f8ef7;
    border: none;
    border-radius: 6px;
    padding: 0.35rem 1.1rem;
    margin-bottom: 1rem;
    font-size: 0.98rem;
    font-weight: 500;
    margin-top: -1.5rem;
    margin-left: 3px;
    cursor: pointer;
    transition: background .2s;
}

    .btn-copy:hover {
        background: #d3e3fa;
    }

.api-content p {
    color: #576688;
    font-size: 1rem;
    margin-top: 0.8rem;
}

.integrations h2 {
    color: #194775;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.3rem;
    max-width: 750px;
    margin: 0 auto;
}

.integration-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(79,142,247,0.05);
    padding: 1.3rem 0.2rem;
    color: #4f8ef7;
    font-weight: 600;
    font-size: 1.04rem;
    letter-spacing: .03em;
    transition: box-shadow .2s, background .2s;
}

    .integration-card:hover {
        background: #e7f0fe;
        box-shadow: 0 2px 16px rgba(79,142,247,0.12);
    }

.journey {
    background: #fff;
    padding: 3rem 0 2.3rem;
    text-align: center;
}

.journey-content h2 {
    color: #194775;
    font-size: 1.26rem;
    margin-bottom: 1.4rem;
    font-weight: 600;
}

.journey-steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 540px;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .journey-steps li {
        background: #fafdff;
        border-radius: 10px;
        padding: 1.1rem 1.6rem;
        color: #346ede;
        font-weight: 600;
        font-size: 1.01rem;
        box-shadow: 0 2px 8px rgba(79,142,247,.07);
    }

.integrations {
    background: #f7fafc;
    padding: 2.7rem 0 2.3rem;
    text-align: center;
}

.pricing {
    background: #f7fafc;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 50px;
}

    .pricing h2 {
        color: #194775;
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        font-weight: 700;
    }

.pricing-subtitle {
    color: #576688;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(79,142,247,0.08);
    padding: 2rem;
    min-width: 200px;
    max-width: 320px;
    flex: 1 1 280px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(79,142,247,0.12);
    }

    .pricing-card.popular {
        border: 2px solid #4f8ef7;
        transform: scale(1.03);
    }

        .pricing-card.popular:hover {
            transform: translateY(-5px) scale(1.03);
        }

.popular-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #4f8ef7;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    color: #194775;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.price {
    color: #194775;
    font-size: 2.2rem;
    font-weight: 700;
}

    .price span {
        font-size: 1rem;
        font-weight: 500;
        color: #576688;
    }

.pricing-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-features li {
        padding: 0.6rem 0;
        color: #576688;
        font-size: 0.95rem;
        position: relative;
        padding-left: 1.8rem;
    }

        .pricing-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4f8ef7;
            font-weight: bold;
        }

.pricing-btn {
    display: block; /* Ensures it respects margin auto */
    max-width: 200px; /* Optional: controls button width */
    width: 100%; /* Makes it responsive up to max-width */
    margin: auto; /* Centers horizontally */
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
    margin-top: auto; /* Keeps it pushed to bottom of flex container */
}


.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

    .pricing-faq h3 {
        color: #194775;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(79,142,247,0.05);
}

    .faq-item h4 {
        color: #194775;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }

    .faq-item p {
        color: #576688;
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        justify-items: center;
    }

    .pricing-card {
        width: 70%;
        max-width: 70%;
    }

        .pricing-card.popular {
            transform: none;
            order: -1;
            margin-bottom: 1rem;
        }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: #fff;
    margin-top: 0;
    padding-top: 3rem;
    box-shadow: 0 -1px 10px rgba(44,94,163,.06);
    border-top: 1px solid #eef3fc;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-col h4 {
    color: #194775;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #4f8ef7;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

    .footer-logo img {
        height: 28px;
        margin-right: 8px;
    }

.footer-about p {
    color: #576688;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .footer-links li a {
        text-decoration: none;
        color: #3a3a3e;
        transition: color .2s, transform .2s;
        font-size: 0.95rem;
        display: inline-block;
    }

        .footer-links li a:hover {
            color: #4f8ef7;
            transform: translateX(3px);
        }

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e7f0fe;
    color: #4f8ef7;
    transition: background .2s, transform .2s;
}

    .social-icon:hover {
        background: #d3e3fa;
        transform: translateY(-3px);
    }

.newsletter-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    .newsletter-form input {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        border: 1px solid #dfe5f2;
        font-size: 0.95rem;
        outline: none;
        transition: border .2s, box-shadow .2s;
    }

        .newsletter-form input:focus {
            border-color: #4f8ef7;
            box-shadow: 0 0 0 3px rgba(79, 142, 247, 0.15);
        }

    .newsletter-form button {
        padding: 0.8rem;
        background: #4f8ef7;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: background .2s, transform .2s;
    }

        .newsletter-form button:hover {
            background: #3a7ae0;
            transform: translateY(-2px);
        }

.footer-divider {
    height: 1px;
    background: #eef3fc;
    margin: 0 auto;
    width: calc(100% - 4rem);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    color: #969eab;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

    .footer-legal a {
        color: #969eab;
        text-decoration: none;
        transition: color .2s;
    }

        .footer-legal a:hover {
            color: #4f8ef7;
        }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }

    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem; /* optional padding */
    }

    .feature-card {
        flex: 1 1 auto;
        max-width: 100%;
        min-width: auto;
        margin: 0.5rem 0;
    }
}

@media (max-width: 950px) {
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-content {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .container {
        width: 98%;
        padding: 0 4vw;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .features-grid, .benefits-grid {
        gap: 1rem;
    }

    .hero {
        padding: 2.4rem 0 1.2rem;
    }

    .journey-steps li {
        font-size: .93rem;
        padding: .8rem .7rem;
    }

    .integration-card {
        font-size: .97rem;
        padding: .9rem 0.07rem;
    }
}
