/* Full Homepage Redesign - Global Styles */
:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --section-padding: 100px 0;
    --border-radius: 24px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Reusable Components */
.section-padding {
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

.p-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.p-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Feature Image styles */
.feature-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-img-wrapper:hover img {
    transform: scale(1.05);
}

/* List styles */
.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.premium-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* FAQ Accordion Modern Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-new {
    background: var(--light-bg);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-question-new {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
}

.faq-question-new::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item-new.active {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.faq-item-new.active .faq-question-new::after {
    transform: rotate(45deg);
}

.faq-answer-new {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-new.active .faq-answer-new {
    padding-bottom: 30px;
    max-height: 500px;
}

/* Step Cards */
.step-card {
    text-align: center;
    padding: 50px 30px;
    height: 100%;
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Buttons */
.premium-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    cursor: pointer;
    text-align: center;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white) !important;
}

.premium-btn-white {
    background: var(--white);
    color: var(--primary-blue) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.premium-btn-white:hover {
    background: #f8fafc;
    color: var(--secondary-blue) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}