/* Base Styles */
:root {
    --primary-color: #5865F2;
    --secondary-color: #7289DA;
    --accent-color: #EB459E;
    --dark-color: #2C2F33;
    --darker-color: #23272A;
    --light-color: #FFFFFF;
    --gray-color: #99AAB5;
    --light-gray: #F6F6F6;
    --success-color: #57F287;
    --warning-color: #FEE75C;
    --danger-color: #ED4245;
    --gradient-primary: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    --gradient-accent: linear-gradient(135deg, #EB459E 0%, #FF7EB6 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.fa-bars, .fa-times {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Reset pour la section d'accueil */
section#home {
    all: initial;
    display: block;
}

/* Expertise Section (Home) */
.expertise {
    padding: 100px 0;
    background-color: #6C7BF2 !important;
    position: relative;
    overflow: hidden;
    color: white !important;
    display: block;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-text {
    margin-bottom: 50px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-button {
    text-align: center;
    margin-top: 40px;
}

.expertise .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #5865F2, #EB459E, #7289DA, #5865F2);
    background-size: 400% 400%;
    animation: glow-animation 8s ease infinite;
    color: white;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.btn-glow:hover {
    background: linear-gradient(90deg, #5865F2, #EB459E, #7289DA, #5865F2);
    background-size: 400% 400%;
    animation: glow-animation 4s ease infinite;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

@keyframes glow-animation {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: var(--light-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(88, 101, 242, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.4;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background-color: var(--light-color);
}

.expertise-content {
    max-width: 800px;
    margin: 0 auto;
}

.expertise-text {
    text-align: center;
    margin-bottom: 50px;
}

.expertise-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.expertise-features {
    margin-bottom: 40px;
}

.expertise-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 30px;
    background-color: rgba(88, 101, 242, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--light-color);
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

.cta-button {
    text-align: center;
    margin-top: 30px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.service-feature {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-feature .feature-icon {
    background-color: rgba(88, 101, 242, 0.1);
    margin-right: 15px;
    width: 50px;
    height: 50px;
}

.service-feature .feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-feature .feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-feature .feature-content p {
    font-size: 0.95rem;
}

/* Analytics Section */
.analytics {
    padding: 100px 0;
    background-color: var(--light-color);
}

.analytics-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.analytics-chart {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.analytics-chart h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.legend-color.messages {
    background-color: var(--primary-color);
}

.legend-color.polls {
    background-color: var(--accent-color);
}

.legend-color.questions {
    background-color: var(--success-color);
}

.chart-image {
    width: 100%;
    height: auto;
}

.chart-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.analytics-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.metric-title {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-change.positive {
    color: var(--success-color);
}

.metric-change.negative {
    color: var(--danger-color);
}

/* Strategy Section */
.strategy {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.strategy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.strategy-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Contact info in strategy section */
.strategy .contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.strategy .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.strategy .contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.strategy .contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.strategy .contact-text p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.strategy-booking {
    display: flex;
    justify-content: center;
}

.booking-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.booking-header {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: var(--light-color);
    padding: 25px 20px;
    text-align: center;
}

.booking-header i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.booking-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-content {
    padding: 30px;
}

.booking-content p {
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.6;
}

.booking-features {
    margin-bottom: 30px;
}

.booking-features li {
    padding: 10px 0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.booking-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

.booking-card .btn {
    width: 100%;
    margin-bottom: 25px;
}

/* Social links in booking card */
.booking-card .social-links {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.booking-card .social-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.booking-card .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.booking-card .social-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-card .social-icon i {
    font-size: 1rem;
    color: var(--primary-color);
}

.booking-card .social-icon:hover {
    background-color: var(--primary-color);
}

.booking-card .social-icon:hover i {
    color: var(--light-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.pricing-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

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

.period {
    font-size: 1rem;
    color: var(--gray-color);
    margin-left: 5px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
}

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

.pricing-features i {
    margin-right: 10px;
}

.pricing-features .fa-check {
    color: var(--success-color);
}

.pricing-features .fa-times {
    color: var(--danger-color);
    display: inline-block;
}

.pricing-features li.disabled {
    color: var(--gray-color);
}

.pricing-footer {
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--dark-color);
    font-style: italic;
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--gray-color);
    border-radius: 50%;
}

.author-avatar::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--gray-color);
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-text p {
    color: var(--gray-color);
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.social-icon:hover i {
    color: var(--light-color);
}

/* Footer */
.footer {
    background-color: var(--darker-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

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

.footer-column ul li a {
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.social-icons i {
    font-size: 1.2rem;
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--light-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        transition: right 0.5s ease;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .fa-bars, .fa-times {
        display: block;
    }
    
    .fa-times {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .features-image {
        order: -1;
        margin-bottom: 50px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}
