:root {
    --primary-color: #2D3436;
    --accent-color: #6C5CE7;
    --gradient-start: #6C5CE7;
    --gradient-end: #00A8FF;
    --text-color: #2D3436;
    --light-bg: #F5F6FA;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation */
nav {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    font-size: 1.8rem;
}

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

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 5rem 0 3rem;
    background: var(--light-bg);
    text-align: center;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #636E72;
}

/* Buttons */
.cta-button {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: var(--light-bg);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Integrations Section */
.integrations {
    padding: 4rem 0;
    background: var(--white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    padding: 2.5rem;
    border-radius: 10px;
    background: var(--light-bg);
    text-align: left;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.tool-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Demo Section */
.demo {
    padding: 4rem 0;
    background: var(--light-bg);
}

.demo-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-color);
}

.vs {
    color: var(--accent-color);
    font-weight: 800;
    margin: 0 0.5rem;
}

.video-wrapper {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.demo-video {
    width: 100%;
    display: block;
}

.comparison-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #636E72;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hello {
    padding-top: 2rem;
}
/* Contact Section */
.contact {
    padding: 4rem 0;
    text-align: center;
}

form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 2px solid #DFE6E9;
    border-radius: 50px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    form {
        flex-direction: column;
    }

    input[type="email"] {
        width: 100%;
    }

    .video-wrapper {
        max-width: 100%;
    }

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

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-luddism {
    padding: 4rem 0;
    background: var(--light-bg);
}

.why-luddism h2 {
    margin-bottom: 2rem;
}

.luddism-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.luddism-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.technical {
    padding: 4rem 0;

}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.metric-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card p {
    color: #636E72;
    font-size: 0.9rem;
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

.comparison-table-wrapper h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--accent-color);
    color: var(--white);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}
