/* Import Base & Component Styles */
@import url('base.css');
@import url('hero.css');
@import url('features.css');
@import url('faq.css');
@import url('contact.css');
@import url('how-it-works.css');

/* Base Styles & Variables */
:root {
    --primary-color: #405DE6;
    --secondary-color: #5851DB;
    --accent-color: #833AB4;
    --danger-color: #E1306C;
    --warning-color: #F77737;
    --success-color: #00C851;
    --dark-color: #262626;
    --light-color: #f8f9fa;
    --gray-color: #8e8e8e;
    --border-color: #dbdbdb;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --container-width: 1200px;
    --section-padding: 4rem 0;
    --section-gap: 2rem;
    --card-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fafafa;
    overflow-x: hidden;
}

/* Base Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: var(--section-gap);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 0 auto;
    width: 100%;
}

/* Responsive Grid Columns */
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card Styling */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--card-padding);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: calc(-1 * var(--card-padding)) calc(-1 * var(--card-padding)) var(--card-padding);
}

.card-body {
    padding: 1rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.card-text {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Remove blue line for specific sections */
#pricing h2::after {
    display: none;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: white;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.logo span {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Trust Badge Popup */
.trust-badge-popup {
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: white;
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 320px;
    width: 90%;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-line {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.3;
    font-weight: 500;
}

.trust-line:last-child {
    color: #666;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    padding: 140px 20px 120px;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(64, 93, 230, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 1.5rem;
    color: #1a1a1a;
    max-width: 100%;
}

.hero .hero-description {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin: 0 auto 2rem;
    line-height: 1.6;
    max-width: 800px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trusted-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.trusted-by > span {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
    display: block;
    text-align: center;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.trust-logos i {
    color: #FFD700;
    font-size: 1.2rem;
}

.trust-logos span {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-left: 8px;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-top: 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(64, 93, 230, 0.1);
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(64, 93, 230, 0.2);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(64, 93, 230, 0.3);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fe 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDAsMCwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(64, 93, 230, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(64, 93, 230, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.platform-tag i {
    margin-right: 8px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-image {
    position: relative;
    margin-right: 15px;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.verification-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    border: 2px solid white;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #333;
}

.handle {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 8px;
    display: block;
}

.stats {
    display: flex;
    gap: 15px;
}

.stats span {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.stats i {
    margin-right: 5px;
    color: var(--primary-color);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    position: relative;
    overflow: hidden;
}

/* Removed blue line from top of pricing section
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}
*/

.pricing .section-header {
    margin-bottom: 60px;
}

.pricing .section-header h2::after {
    display: none;
}

/* Pricing Table Styles */
.pricing-table-container {
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pricing-filters {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-table-wrapper {
    overflow-x: auto;
    padding: 0 20px 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
    min-width: 800px;
}

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

.pricing-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.pricing-table tr:hover {
    background-color: #f9fafb;
}

.pricing-table i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--primary-color);
}

.btn-order {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 13px;
    text-align: center;
    min-width: 100px;
    border: none;
    cursor: pointer;
}

.btn-order.featured {
    background: #ff6b35;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    opacity: 0.9;
}

.pricing-note {
    padding: 15px 20px;
    background: #f0f7ff;
    color: #1e40af;
    font-size: 13px;
    border-top: 1px solid #dbeafe;
    text-align: center;
}

.pricing-note a {
    color: #1d4ed8;
    font-weight: 500;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Highlighted rows for combo packages */
.pricing-table tr.highlighted {
    background-color: #f8f5ff;
    border-left: 3px solid var(--accent-color);
}

.pricing-table tr.highlighted i {
    color: var(--accent-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .pricing-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-filters::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-table th, 
    .pricing-table td {
        padding: 12px 8px;
    }
}

/* Animation for table rows */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-table tbody tr {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

/* Staggered animation delays */
.pricing-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.pricing-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.pricing-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.pricing-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.pricing-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
.pricing-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
.pricing-table tbody tr:nth-child(7) { animation-delay: 0.7s; }
.pricing-table tbody tr:nth-child(8) { animation-delay: 0.8s; }
.pricing-table tbody tr:nth-child(9) { animation-delay: 0.9s; }
.pricing-table tbody tr:nth-child(10) { animation-delay: 1.0s; }
.pricing-table tbody tr:nth-child(11) { animation-delay: 1.1s; }

/* Pricing Icons */
.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Package Details */
.package-details {
    margin: 15px 0 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-note {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* FAQ Section - Modern Flip Card Design */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq .section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq .section-header h2 {
    font-size: 2.8rem;
    margin: 0.5rem 0 1rem;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.2;
}

.faq .section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Flip Card Container */
.faq-card {
    background: transparent;
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
    border-radius: 16px;
}

/* Flip Card Inner Container */
.faq-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

/* Flip on hover */
.faq-card:hover .faq-card-inner {
    transform: rotateY(10deg);
}

.faq-card.active .faq-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back Face Styling */
.faq-card-front,
.faq-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Front Card Styling */
.faq-card-front {
    transform: rotateY(0deg);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Back Card Styling */
.faq-card-back {
    transform: rotateY(180deg);
    background: #fff;
    text-align: left;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Icon Styling */
.faq-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Typography */
.faq-card h3 {
    font-size: 1.4rem;
    margin: 0 0 0.8rem;
    color: #1a1a2e;
    font-weight: 700;
}

.faq-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
}

/* CTA Button Styling */
.faq-cta {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.02);
}

.faq-card:hover .faq-cta {
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.faq-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-cta i {
    transform: translateX(5px);
}

/* Close Button */
.faq-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.faq-close:hover {
    background: #f0f2f5;
    color: #495057;
    transform: rotate(90deg);
}

/* CTA Card */
.faq-cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    padding: 3rem 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta-card h3 {
    font-size: 2rem;
    margin: 0 0 1rem;
    font-weight: 700;
    color: white;
}

.faq-cta-card p {
    font-size: 1.1rem;
    margin: 0 0 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq .section-header h2 {
        font-size: 2.2rem;
    }
    
    .faq .section-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .faq-card {
        height: auto;
        min-height: 240px;
    }
    
    .faq-cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-cta-card h3 {
        font-size: 1.8rem;
    }
    
    .faq-cta-card p {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.faq-card:nth-child(1) { animation-delay: 0.1s; }
.faq-card:nth-child(2) { animation-delay: 0.2s; }
.faq-card:nth-child(3) { animation-delay: 0.3s; }
.faq-card:nth-child(4) { animation-delay: 0.4s; }
.faq-card:nth-child(5) { animation-delay: 0.5s; }
.faq-cta-card { 
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

/* Update pricing card styles */
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card .price {
    margin: 10px 0;
}

.pricing-card .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--gray-color);
}

.pricing-card .pricing-features {
    margin: 20px 0 30px;
    flex-grow: 1;
}

.pricing-card .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card .pricing-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.pricing-card .pricing-features i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing .section-header p {
    max-width: 700px;
    margin: 15px auto 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 150px;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #333;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1rem;
    color: #666;
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.pricing-header p {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    margin: 40px 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    color: #4CAF50;
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card .btn-primary:hover::before {
    opacity: 1;
}

.pricing-card .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.pricing-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
    margin: 0 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 32px;
    width: 32px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider:before {
    transform: translateX(40px);
}

.toggle-labels {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.toggle-labels.active {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

/* Testimonial card hover effect */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Yearly Text */
.yearly-text {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 15px;
    display: none;
}

.save-amount {
    color: #4CAF50;
    font-weight: 600;
    margin-left: 5px;
    display: none;
}

.discount-badge {
    background: #FF5722;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 600;
    display: inline-block;
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 15px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-labels {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-labels.active {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 15px;
    }
    
    .toggle-labels {
        font-size: 0.9rem;
    }
    
    .discount-badge {
        display: block;
        margin: 5px auto 0;
        width: fit-content;
    }
}

.social-proof {
    margin-top: 50px;
    text-align: center;
}

.trustpilot-widget {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stars {
    margin-right: 15px;
}

.stars i {
    color: #00b67a;
    font-size: 1.2rem;
    margin: 0 2px;
}

.trustpilot-text {
    font-size: 0.9rem;
    color: #666;
}

.trustpilot-text strong {
    color: #333;
    margin-left: 5px;
}

.trusted-by {
    margin-top: 30px;
}

.trusted-by p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    max-height: 40px;
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px;
    }
}

@media (max-width: 767px) {
    .testimonial-carousel {
        padding: 0 40px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-dots {
        margin-top: 30px;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-logo {
        max-height: 30px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0 100px;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fe 0%, #f0f4ff 100%);
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDAsMCwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(64, 93, 230, 0.3);
}

.step-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(64, 93, 230, 0.1);
    position: relative;
    flex-grow: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(64, 93, 230, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(64, 93, 230, 0.3);
}

.step-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Add connector lines between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    z-index: 0;
}

/* Step Features & Tips */
.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.step-features span {
    background: rgba(236, 239, 255, 0.8);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.step-features i {
    color: var(--accent-color);
}

.step-tip {
    background: #f8f5ff;
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.step-tip i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.feature-highlight {
    background: white;
    border: 1px solid #e6e9f0;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 93, 230, 0.1);
    border-color: #d6dcf0;
}

.feature-highlight i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(64, 93, 230, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Engagement Metrics */
.engagement-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.metric {
    text-align: center;
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 93, 230, 0.1);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    opacity: 0.9;
}

/* CTA Container */
.cta-container {
    margin-top: 80px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(64, 93, 230, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.trust-badges i {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: left;
        margin-bottom: 40px;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-icon {
        margin: 0 auto 20px;
    }
    
    .feature-highlight {
        min-width: 100%;
    }
    
    .cta-container {
        padding: 30px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .step:not(:last-child)::after {
        left: 50%;
        top: 100%;
        width: 2px;
        height: 40px;
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    font-size: 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo span {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-column {
    text-align: right;
}

.footer-links-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a::after {
    content: '→';
    margin-left: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    right: -15px;
}

.footer-links a:hover::after {
    opacity: 1;
    right: -20px;
}

/* Footer Legal */
.footer-legal {
    margin-top: 20px;
    padding-top: 20px;
    max-width: 400px;
}

.footer-legal p {
    color: #888;
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-legal .disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transform: translateY(-3px);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .trusted-by {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .phone-mockup {
        display: none; /* Hide the phone mockup on mobile */
    }
    
    .mobile-hero-image {
        display: block; /* Show the mobile image on mobile */
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 2.5rem 0;
        --card-padding: 1rem;
    }
    
    .grid,
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

/* Mobile Hero Image */
.mobile-hero-image {
    display: none; /* Hidden by default */
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.mobile-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.section-safe {
    background-color: #f8f9ff;
    padding: 4rem 0;
  }
  
  .section-benefits {
    background-color: #ffffff;
    padding: 4rem 0;
  }
  
  .section-header h2 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
  }
  
  .section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--dark-color);
    line-height: 1.75;
  }
  
  .benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .benefits-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-color);
  }
  
  .benefits-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  