/* Home Page Redesign - Custom Styles */
:root {
    --color-violet: #A87ED8;
    --color-blue: #92BFF9;
    --color-dark: #1e272e;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --transition: all 0.3s ease;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800 !important;
    margin-bottom: 2rem;
    text-align: center;
}

.text-violet {
    color: var(--color-violet) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.bg-light {
    background-color: var(--color-light);
}

/* Hero Section */
.hero-redesign {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.hero-redesign h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--color-violet), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-redesign .subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-benefits i {
    color: var(--color-violet);
    margin-right: 15px;
    font-size: 1.2rem;
}

.hero-mockup img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

/* Ensure welcome-area-two content is visible */
.welcome-area-two {
    height: auto !important;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Problem Section */
.problem-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--color-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.problem-list li i {
    color: #ef4444;
    margin-right: 15px;
}

/* Problem Indicators Grid */
.indicator-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.indicator-box:hover {
    border-color: var(--color-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(146, 191, 249, 0.1);
}

.indicator-box i {
    font-size: 2rem;
    color: var(--color-blue);
    margin-bottom: 15px;
    display: block;
}

.indicator-box h6 {
    font-weight: 700;
    margin-bottom: 0;
}

/* Solution Grid */
.solution-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.solution-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 126, 216, 0.1);
    border-color: var(--color-violet);
}

.solution-box i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--color-violet), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Services */
.service-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--color-violet);
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover i {
    color: #fff !important;
}

/* Timeline */
.workflow-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-violet);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(168, 126, 216, 0.3);
}

/* Final CTA */
.cta-final {
    background: linear-gradient(135deg, var(--color-violet), var(--color-blue));
    color: white;
    text-align: center;
    border-radius: 30px;
    padding: 80px 40px;
}

.cta-final h2 {
    color: white !important;
}

/* Authority Section */
.authority-box {
    padding: 40px;
    border-radius: 20px;
    background: white;
    border-bottom: 4px solid var(--color-violet);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.authority-box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-violet);
}

.authority-box h5 {
    font-weight: 800;
    margin-bottom: 15px;
}

/* Filter Section */
.filter-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.filter-list li {
    background: #f8fafc;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-violet);
    border: 1px solid #e2e8f0;
}

.filter-list li i {
    color: #10b981;
    margin-right: 8px;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-violet);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #9168c1;
    transform: scale(1.05);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--color-violet) !important;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--color-violet);
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: var(--color-violet);
    color: white !important;
}