/*!
Theme Name: Wisterias landing page
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wisterias-landing-page
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Wisterias landing page is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
:root {
    --purple-primary: #641f70;
    --purple-dark: #4d1858;
    --purple-light: #E8D4EF;
    --purple-gradient: linear-gradient(135deg, #641f70 0%, #7A288A 100%);
    --text-dark: #141414;
    --text-gray: #636363;
    --bg-light: #F8F9FA;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}
.navbar-brand{
	margin-right: 0;
}
.brand-name {
    font-family: 'Hedvig Letters Serif', serif;
    font-size: 1.5rem;
    color: var(--purple-primary);
    font-weight: 600;
}

/* .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--purple-primary);
} */
a.custom-logo-link img {
    max-width: 140px;
    height: auto;
    width: 100%;
}
.navbar-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Style each menu item */
.navbar-nav li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Hover effect */
.navbar-nav li a:hover {
  color: #6a1b9a; /* Purple hover */
}

/* Active menu item */
.navbar-nav li.current-menu-item a,
.navbar-nav li.current_page_item a {
  color: #6a1b9a; /* Purple active */
  border-bottom: 2px solid #6a1b9a;
}

body a.btn-purple {
    background: var(--purple-primary);
    color: white;
    border: none;
    padding: 0.2rem 0.2rem 0.2rem 1rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

body a.btn-purple::after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

body a.btn-purple::before {
    content: '→';
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--purple-primary);
    -webkit-text-stroke: 1px var(--purple-primary);
    position: absolute;
    right: 12px;
    z-index: 1;
    transition: transform 0.3s ease;
}

body a.btn-purple:hover {
    background: var(--purple-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(123, 50, 149, 0.3);
}

body a.btn-purple:hover::before {
    animation: arrowBounce 0.6s ease-in-out;
}

@keyframes arrowBounce {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        transform: translateX(8px);
        opacity: 0;
    }
    41% {
        transform: translateX(-8px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

body a.btn-white-purple {
    background: white;
    color: var(--purple-primary);
    border: none;
    padding: 0.2rem 0.3rem 0.2rem 1rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
}

body a.btn-white-purple::after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

body a.btn-white-purple::before {
    content: '→';
    font-size: 1rem;
    font-weight: 400;
    color: white;
    -webkit-text-stroke: 1px white;
    position: absolute;
    right: 12px;
    z-index: 1;
    transition: transform 0.3s ease;
}

body a.btn-white-purple:hover::before {
    animation: arrowBounce 0.6s ease-in-out;
}

body a.btn-white-purple:hover {
    background: white;
    color: var(--purple-dark);;
    box-shadow: 0 4px 12px rgba(123, 50, 149, 0.3);
}

body a.btn-outline-purple {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

body a.btn-outline-purple:hover {
    background: var(--bg-light);
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

/* Hero Section */
.hero-section {
    background: var(--purple-gradient);
    color: white;
    position: relative;
    margin: 8px auto 15px;
    overflow: visible;
    max-width: 1300px;
    border-radius:25px;
    padding: 70px 0 ;
}

.hero-content-wrapper {
    width: 100%;
}

.hero-content {
    /* max-width: 600px; */
    padding: 0 3rem;
}

.rating-badge {
    display: inline-flex
    ;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
}

.rating-badge .stars {
    color: white;
    letter-spacing: 0;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 550px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.framer-badge {
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.partners-title {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 400;
}

.logos-slider {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.logos-slide {
    display: flex;
    gap: 1.5rem;
    animation: slide 5s linear infinite;
    width: max-content;
}

.partner-logo {
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    color: #999;
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
/*     filter: grayscale(100%) opacity(0.6); */
    transition: filter 0.1s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logos-slider:hover .logos-slide {
    animation-play-state: paused;
}

/* Section Styling */
.section-label {
     display: inline-block;
    color: var(--purple-primary);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--purple-primary);
    border-radius: 50%;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    max-width: 1320px;
    margin: 0 auto;
}

.comparison-container {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 65px auto;
    position: relative;
    background: linear-gradient(244deg,#641f70 0%,var(--token-1eeffa50-d0e7-475a-ae85-eb2a3f2ffc02,#fff)73%,#fdfffc 100%);
    padding: 4px;
    border-radius: 32px;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
}

.comparison-card {
    padding: 3rem;
    border-radius: 32px;
    position: relative;
}

.left-card {
    /* background: linear-gradient(to left, rgba(155, 79, 184, 0.25) 0%, rgba(245, 237, 248, 0.4) 50%, rgba(255, 255, 255, 0.6) 100%); */
    /* backdrop-filter: blur(20px); */
    /*  */
    z-index: 1;
}

.right-card {
    background: white;
    /* box-shadow: 0 20px 60px rgba(123, 50, 149, 0.2); */
    z-index: 2;
    margin-left: -40px;
}

.comparison-title {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.comparison-item {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.comparison-item p {
    color: #636363;
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

.comparison-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
/*     background: transparent;
    border: 2px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem; */
    position: relative;
}


.purple-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--purple-primary);
/*     border: 2px solid var(--purple-primary); */
    border-radius: 50%;
     display: flex;
    align-items: center;
    justify-content: center;
}
.purple-icon  > svg{
	width: 20px !important;
}

.purple-dot {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--purple-primary);
    border-radius: 50%;
    margin-top: 0.25rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 30x 0;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.testimonial-text {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: normal;
    font-weight: 400;
    font-family: 'Hedvig Letters Serif', serif;
}

.testimonial-author {
    color: var(--dark-gray);
    font-weight: 300;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    max-width: 1300px;
    margin: 0 auto;
}

/* Built For Section */
.built-for-section {
    background: white;
    padding: 80px 0;
    max-width: 1300px;
    margin: 50px auto;
}

.timeline-visual-container {
    margin-top: 80px;
    position: relative;
}

.timeline-visual-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-visual-item {
    position: relative;
    margin-bottom: 100px;
}

.timeline-visual-item:last-child {
    margin-bottom: 0;
}

.timeline-visual-item .row {
    position: relative;
}

.align-items-center > div > .timeline-image-wrapper {
    position: relative;
    padding: 0;
    width: 100%;
    text-align: left;
}
.timeline-visual-item .order-lg-2 .timeline-image-wrapper {
	text-align: right;
}
.timeline-image-wrapper {
    position: relative;
    padding: 0;
    width: 100%;
    text-align: center;
}

.timeline-image {
    max-width: 565px;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 30px;
/*     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
}

.timeline-connector {
    display: none;
}

.timeline-badge {
      display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--purple-primary);
    color: white;
    border-radius: 50%;
    font-weight: 400;
    font-size: 0.9rem;
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    z-index: 10;
    border: 7px solid white;
}

.timeline-content-right {
    padding-left: 4rem;
    padding-right: 2rem;
    position: relative;
    background: white;
    z-index: 2;
}

.timeline-content-left {
    padding-right: 4rem;
    padding-left: 1rem;
    text-align: left;
    position: relative;
    background: white;
    z-index: 2;
}

.timeline-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.timeline-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.4;
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    max-width: 1300px;
    margin: 0 auto;
    background: white;
}


.feature-item {
    position: relative;
    display: flex;
    align-items: center;
}

.left-feature {
    justify-content: flex-end;
    text-align: right;
}

.right-feature {
    justify-content: flex-start;
    text-align: left;
}

.feature-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    background: white;
    border-radius: 50px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    background-color: var(--token-293ddbb3-9372-4381-ae8b-bd0cced59e35, rgb(250, 250, 250));
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.feature-dot {
    width: 30px;
    height: 10px;
    background: var(--purple-primary);
    border-radius: 48px;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.feature-line {
    position: absolute;
    height: 5px;
    background: #333;
    z-index: 1;
    opacity: 0.4;
}

.left-line {
    right: -108px;
    width: 180px;
    background: linear-gradient(to right, transparent, #333);
    height: 1px;
}

.right-line {
     right: 267px;
    width: 180px;
    background: linear-gradient(to right, transparent, #333);
    height: 1px;
}

/* Phone Mockup */
.phone-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
	.navbar-collapse .btn-purple{
		margin-top: 20px;
	}
	.navbar-nav {
    margin-top: 15px;
}
	.hero-image-wrapper {
    justify-content: left;
}
	.hero-content {
    padding: 0 1rem;
}
    .features-showcase {
        padding: 20px 0;
    }

    .feature-item {
        justify-content: center !important;
        margin-bottom: 1.5rem !important;
    }

    .feature-line {
        display: none;
    }

    .phone-mockup-container {
        margin: 2rem 0;
    }
	.benefit-card {
    padding: 0rem 1rem;
}
/* 
    .phone-image {
        max-width: 280px;
    } */
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 80px 0;
    max-width: 1300px;
    margin: 50px auto 30px;
}

.pricing-card {
    background: #F5EDF8;
    padding: 1.5rem;
    border-radius: 25px;
    position: relative;
    border: none;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.standard-card {
    background: linear-gradient(to bottom, #ebe5ee 0%, #ebe5ee 34%, rgb(255 255 255 / 0%) 100%);
    transform: translateY(-30px);
}

.standard-card:hover {
    transform: translateY(-35px);
}

.premium-card {
    background: linear-gradient(to bottom, #dcc5e3 0%, #dcc5e3 34%, rgb(255 255 255 / 0%) 100%);
}

.premium-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.popular-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--purple-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-plan {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.pricing-description {
    color: #636363;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.currency {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'Hedvig Letters Serif', serif;
}

.amount {
    font-size: 3rem;
    font-weight: 400;
    font-family: 'Hedvig Letters Serif', serif;
    line-height: 1;
}

.period {
    color: #636363;
    font-size: 1rem;
    margin-left: 0.25rem;
}

body a.btn-outline-purple-pricing {
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body a.btn-outline-purple-pricing:hover {
    background: rgba(255,255,255,0.8);
    border-color: var(--purple-primary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

body a.btn-purple-pricing {
    background: var(--purple-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body a.btn-purple-pricing:hover {
    background: var(--purple-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(123, 50, 149, 0.3);
}

.features-plus {
    color: #636363;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.pricing-features li {
    padding: 0.45rem 0;
    color: #6a6a6a;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
	font-weight: 400;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.checkmark {
    color: var(--purple-primary);
    font-weight: 400;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    max-width: 1300px;
    margin: 0 auto;
    background: white;
}

.benefit-card {
    padding: 2rem 1rem;
}

.benefit-icon {
    width: 46px;
    height: 46px;
    background: var(--purple-primary);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}
.benefit-icon span {
    font-size: 1.3rem;
}
.benefit-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
	padding: 0 9%;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    max-width: 1300px;
    margin: 50px auto;
    border-radius: 24px;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 0.2rem rgba(123, 50, 149, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    max-width: 1300px;
    margin: 0 auto;
}

body .accordion {
    max-width: 700px;
    margin: 0 auto;
}

body .accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
}

body .accordion-button {
    font-size: 1.1rem;
    font-weight: 400;
    background: transparent;
    border: none;
    padding: 0.8em 3rem 0.8rem 0;
    box-shadow: none;
    color: var(--text-dark);
    position: relative;
}

body .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: var(--text-dark) !important;
}

body .accordion-button:focus {
    box-shadow: none;
    border: none;
}

body .accordion-button::after {
    content: '';
    width: 28px;
    height: 28px;
    background: var(--purple-primary);
    border-radius: 50%;
    position: absolute;
    right: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    flex-shrink: 0;
}

body .accordion-body {
    padding: 0 0 1.5rem 0;
    color: var(--text-gray);
}

/* Footer */
.footer {
    margin: 50px auto 0;
}
.footer .text-muted{
   font-size: 0.8rem;
}

.footer h5, .footer h6 {
    margin-bottom: 1rem;
	font-weight:400;
	font-size: 1.1rem;
}

.footer a.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.footer a.footer-link i{
    padding: 0 15px 0 0;
    text-decoration: none;
	font-size: 19px;
}
ul.footer-links{
	padding-left: 0;
}
.footer li{
	list-style: none;
}

.footer a:hover {
    color: var(--purple-primary);
}

.footer a.custom-logo-link img {
    max-width: 110px;
    height: auto;
    width: 100%;
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        padding: 1rem;
        margin-top: 2rem;
    }

    .hero-image {
        max-width: 400px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .right-card {
        margin-left: 0;
    }

    .testimonial-text {
        font-size: 1.4rem;
    }

    .timeline-visual-item {
        margin-bottom: 60px;
    }

    .timeline-connector {
        bottom: -60px;
        height: 60px;
    }

    .timeline-content-right,
    .timeline-content-left {
        padding: 0;
        text-align: center;
        margin-top: 2rem;
    }

    .timeline-badge {
/*         position: static;
        transform: none;
        margin: 0 auto 1.5rem; */
		display: none;
    }
	.timeline-visual-container::before {
    content: none;
}

    .timeline-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}