* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #111;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #eee;
    padding: 0 5%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #00c16e;
}

.buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.demo-button {
    background: #00c16e;
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.demo-button:hover {
    background: #00a85d;
}

.dropdown {
    display: inline-block;
}

.dropdown-button {
    background: transparent;
    border: 1px solid #ccc;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease;
}

.dropdown-button:hover {
    border-color: #00c16e;
    color: #00c16e;
}

.hero {
    max-width: 1200px;
    margin: 100px auto 60px auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.hero-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.rating {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.rating .stars {
    color: #000;
    font-size: 20px;
}

.rating .score {
    font-weight: 600;
}

.rating .label {
    color: #555;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 6px;
}

.stat p {
    color: #555;
    font-size: 14px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.trusted {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.trusted-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trusted-logos img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.feature {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.feature-text {
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background: #00c16e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.feature-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.feature-points {
    margin-top: 20px;
}

.feature-point {
    margin-bottom: 16px;
}

.feature-point h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-point p {
    font-size: 14px;
    color: #555;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.highlights {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.highlights-header {
    margin-bottom: 20px;
}

.highlights-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlights-header a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #00c16e;
    text-decoration: none;
}

.highlights-image {
    text-align: center;
}

.highlights-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Integrations Section */
.integrations {
    background-color: #060810;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.integrations-content {
    max-width: 900px;
    margin: 0 auto;
}

.integrations h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.integrations p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 50px;
}

.integrations-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 100px 20px;
    background-color: #fff;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.cta-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    background: #4ade80;
    color: #000;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #22c55e;
}

footer {
    border-top: 1px solid #eee;
    padding: 50px 5%;
    background: #fff;
    font-size: 14px;
    color: #444;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    min-width: 220px;
}

.footer-logo img {
    height: 28px;
    margin-bottom: 16px;
}

.footer-badge {
    height: 40px;
    margin: 12px 0;
}

.footer-cert {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 13px;
    color: #888;
}

.footer-columns {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    min-width: 300px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 6px;
}

.footer-column a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #00c16e;
}

.footer-column p {
    margin: 0;
    color: #111;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-content,
    .feature {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .feature-text {
        flex: unset;
    }

    .hero-image,
    .feature-image {
        margin-top: 20px;
    }
}
