@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.arvento-esign-page {
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.esign-hero {
    text-align: center;
    padding: 80px 20px;
    background: #30afb8;
    border-radius: 20px;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 15px 50px rgba(48, 175, 184, 0.3);
}

.esign-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.esign-hero .subtitle {
    font-size: 1.4em;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #30afb8;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 175, 184, 0.2);
    color: #30afb8;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.features-section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    color: #2d3748;
    margin-bottom: 16px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.8;
}

.how-it-works {
    background: #f7fafc;
    padding: 60px 40px;
    border-radius: 16px;
    margin: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #30afb8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3em;
    color: #2d3748;
    margin-bottom: 12px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: #30afb8;
    border-radius: 20px;
    color: white;
    margin-top: 80px;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 40px;
}