:root {
    --bg-color: #ffffff;
    /* White Background */
    --text-color: #06110d;
    /* Dark Green/Black text */
    --text-muted: #556b60;
    /* Muted dark green text */
    --primary: #00ff55;
    /* Bright Green */
    --secondary: #0d3a2c;
    /* Color 15 - Dark Forest */
    --accent: linear-gradient(135deg, var(--primary), #10b981);
    --glass-bg: rgba(255, 255, 255, 0.85);
    /* Light frosted glass */
    --glass-border: rgba(0, 0, 0, 0.1);
    /* Subtly dark border */
}

body {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

::selection {
    background-color: var(--primary);
    color: white;
}

/* Background elements for aesthetic */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 85, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(50px);
}

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

/* Typography */
h1,
h2,
h3 {
    margin: 0;
    line-height: 1.2;
}

.gradient-text {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero */
.hero {
    padding: 80px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--accent);
    color: #06110d;
    /* Dark text for contrast against bright green */
    box-shadow: 0 4px 15px rgba(0, 255, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 85, 0.5);
}

/* Multi-device Mockup layout */
.multi-device-mockup {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-desktop {
    position: absolute;
    width: 85%;
    z-index: 1;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.device-tablet {
    position: absolute;
    width: 45%;
    right: 0;
    bottom: -20px;
    z-index: 2;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2);
}

.device-mobile {
    position: absolute;
    width: 25%;
    left: 10%;
    bottom: -40px;
    z-index: 3;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.25);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(0, 0, 0, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-text {
    color: var(--text-muted);
}

/* Steps */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: scale(1.02);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-left: 30px;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
}

/* Form */
.form-section {
    position: relative;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 85, 0.3);
}

.submit-btn {
    width: 100%;
    margin-top: 16px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .multi-device-mockup {
        height: 300px;
    }

    .device-desktop {
        width: 100%;
    }

    .device-tablet {
        width: 50%;
        right: -10%;
    }

    .device-mobile {
        width: 28%;
        left: 0;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
        text-align: center;
    }

    .hero-title {
        text-align: center !important;
        font-size: 2.8rem;
    }

    header .container {
        flex-direction: column;
        gap: 20px;
    }

    header .contact-info {
        display: none;
        /* Hide phone number span on very small screens to save space */
    }

    .bg-glow {
        right: 50%;
        transform: translateX(50%);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 20px;
    /* Left side for RTL sites */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #FFF;
}