/* Base Styles */
:root {
    --primary-color: #6200ee;
    --secondary-color: #03dac6;
    --accent-color: #bb86fc;
    --dark-color: #3700b3;
    --light-color: #f7f7f7;
    --text-color: #333333;
    --grey-color: #888888;
    --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

section {
    padding: 50px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

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

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(98, 0, 238, 0.3);
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(98, 0, 238, 0.4);
    color: white;
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section - New Design */
.hero {
    position: relative;
    background: linear-gradient(135deg, #5533ff 0%, #3700B3 100%);
    color: white;
    padding: 120px 0 140px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-animation 15s infinite ease-in-out;
}

.shape1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -80px;
    animation-delay: -5s;
}

.shape3 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 30%;
    animation-delay: -10s;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin-bottom: 40px;
    animation: fade-in-up 0.8s ease-out forwards;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}

.highlight {
    color: #ffdd00;
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 221, 0, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.canva-text {
    background: linear-gradient(to right, #00c4cc, #7d2ae8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #5533ff;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-animation 2s infinite;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-item i {
    color: #4ade80;
}

.btn-cta {
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.4);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 65, 108, 0.5);
    background: linear-gradient(45deg, #ff416c, #ff2b5e);
    color: white;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.pro-mockup {
    position: relative;
    width: 100%;
    height: 300px;
    perspective: 1500px;
}

.screen {
    position: absolute;
    width: 90%;
    height: 100%;
    top: 0;
    left: 5%;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    transform: rotateX(5deg) rotateY(-15deg);
    transform-style: preserve-3d;
    animation: float-mockup 8s ease-in-out infinite;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.editor-toolbar {
    height: 40px;
    background: #6200ee;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

.toolbar-item {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.design-canvas {
    height: calc(100% - 40px);
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.element {
    position: absolute;
    border-radius: 8px;
    animation: float-elements 10s ease-in-out infinite;
}

.element1 {
    width: 250px;
    height: 80px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4ade80, #00c4cc);
    bottom: 20%;
    left: 60%;
    border-radius: 50%;
    animation-delay: -2s;
}

.element3 {
    width: 140px;
    height: 50px;
    background: linear-gradient(45deg, #5533ff, #7d2ae8);
    top: 60%;
    left: 15%;
    animation-delay: -4s;
}

.element4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffdd00, #fbbf24);
    top: 30%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: -6s;
}

.element5 {
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #00c4cc, #0ea5e9);
    bottom: 15%;
    left: 25%;
    animation-delay: -8s;
}

.pro-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffdd00;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: pulse-animation 2s infinite;
}

.floating-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: floating-badges 6s ease-in-out infinite;
    z-index: 5;
    font-size: 18px;
}

.mobile-badge {
    background: linear-gradient(45deg, #00c4cc, #0ea5e9);
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.premium-badge {
    background: linear-gradient(45deg, #fbbf24, #ffdd00);
    color: #111827;
    top: 20%;
    right: 5%;
    animation-delay: -2s;
}

.template-badge {
    background: linear-gradient(45deg, #5533ff, #7d2ae8);
    bottom: 5%;
    left: 10%;
    animation-delay: -4s;
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

@keyframes float-animation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-animation {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes float-mockup {
    0%, 100% {
        transform: rotateX(5deg) rotateY(-15deg) translateY(0);
    }
    50% {
        transform: rotateX(7deg) rotateY(-10deg) translateY(-15px);
    }
}

@keyframes float-elements {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes floating-badges {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Media Queries for Hero */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        margin-bottom: 0;
        margin-right: 40px;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
    
    .screen {
        transform: rotateX(5deg) rotateY(-20deg) translateZ(0);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .pro-mockup {
        height: 250px;
        margin-top: 40px;
    }
    
    .screen {
        transform: rotateX(5deg) rotateY(-5deg);
        width: 100%;
        left: 0;
    }
    
    .shape1, .shape2, .shape3 {
        opacity: 0.5;
    }
}

/* Updated Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-color);
    max-width: 600px;
    margin: 0 auto;
    margin-top: -10px;
}

/* Updated Features Section */
.features {
    background-color: var(--light-color);
    position: relative;
    padding: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.feature-item-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #5533ff 0%, #3700B3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(85, 51, 255, 0.2);
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #222;
}

.feature-content p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Updated How It Works Section */
.how-it-works {
    background-color: var(--light-color);
    position: relative;
    padding: 100px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #5533ff, #7d2ae8);
    border-radius: 4px;
}

.process-step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6200ee, #3700b3);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(98, 0, 238, 0.2);
}

.step-content {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #222;
}

.step-content p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    max-width: 600px;
    margin: 40px auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.process-note i {
    color: #5533ff;
    font-size: 20px;
}

.process-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #333;
}

@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        padding-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .process-step:nth-child(odd) {
        flex-direction: row-reverse;
    }
    
    .step-number {
        position: relative;
        margin: 0 30px;
    }
    
    .step-content {
        width: calc(50% - 60px);
    }
    
    .process-step:nth-child(odd) .step-content {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .how-it-works {
        padding: 30px 0;
    }
    
    .process-timeline {
        padding: 20px 0;
    }
    
    .process-step {
        padding-left: 60px;
        margin-bottom: 40px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .process-note {
        flex-direction: column;
        padding: 15px;
        text-align: center;
        border-radius: 16px;
    }
}

/* Completely New Pricing Section Design */
.pricing {
    background: linear-gradient(135deg, #f9fafe 0%, #f0f0fa 100%);
    padding: 10px 0 50px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%235533ff" fill-opacity="0.02" d="M0,224L48,213.3C96,203,192,181,288,154.7C384,128,480,96,576,117.3C672,139,768,213,864,218.7C960,224,1056,160,1152,144C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--grey-color);
    margin-bottom: 30px;
}

/* New Slider Toggle Design */
.pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px;
    border-radius: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    z-index: 5;
}

.toggle-option {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--grey-color);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    border-radius: 25px;
}

.toggle-option.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    border-radius: 25px;
    transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(98, 0, 238, 0.3);
}

.toggle-option:nth-child(2).active ~ .toggle-slider {
    left: calc(50% + 6px);
}

/* Showcase Carousel Design */
.pricing-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    padding-bottom: 50px;
}

.pricing-carousel {
    display: flex;
    position: relative;
    margin: 30px auto;
    max-width: 1000px;
    perspective: 1000px;
    align-items: flex-start;
}

.price-card {
    position: relative;
    flex: 1;
    max-width: 300px;
    min-height: 460px;
    margin: 0 15px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(98, 0, 238, 0.15);
    border-color: rgba(98, 0, 238, 0.1);
}

.price-card-header {
    padding: 30px 25px 20px;
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f1fa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 700;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 10px 0 5px;
    display: flex;
    align-items: flex-start;
}

.price-amount:before {
    content: "₹";
    font-size: 1.5rem;
    margin-right: 2px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 5px;
}

.price-period {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-bottom: 10px;
    display: block;
}

.price-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.3);
}

.save-badge {
    background: linear-gradient(135deg, #6200ee 0%, #9d4edd 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(98, 0, 238, 0.2);
}

.price-card-body {
    padding: 30px 25px;
}

.price-features {
    margin: 0 0 30px;
    padding: 0;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}

.price-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
    min-width: 20px;
    margin-top: 3px;
}

.price-btn {
    display: block;
    padding: 14px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-btn i {
    transition: transform 0.3s ease;
}

.price-btn:hover i {
    transform: translateX(5px);
}

.price-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(98, 0, 238, 0.3);
}

.price-btn-primary:hover {
    box-shadow: 0 10px 25px rgba(98, 0, 238, 0.4);
    color: white;
    transform: translateY(-3px);
}

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

.price-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(98, 0, 238, 0.2);
}

/* Popular card styling */
.price-card.popular, .price-card[data-term="1month"] {
    transform: scale(1.05);
    z-index: 2;
    border: none;
    box-shadow: 0 15px 50px rgba(98, 0, 238, 0.2);
}

.price-card.popular:hover, .price-card[data-term="1month"]:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-card.popular .price-card-header, .price-card[data-term="1month"] .price-card-header {
    background: linear-gradient(135deg, #6200ee 0%, #9d4edd 100%);
    color: white;
    padding-top: 40px;
}

.price-card.popular .plan-name, .price-card[data-term="1month"] .plan-name {
    color: white;
}

.price-card.popular .price-amount, .price-card[data-term="1month"] .price-amount {
    color: white;
}

.price-card.popular .price-amount:before, .price-card[data-term="1month"] .price-amount:before {
    color: white;
}

.price-card.popular .price-period, .price-card[data-term="1month"] .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.price-card.popular .save-badge, .price-card[data-term="1month"] .save-badge {
    background: white;
    color: var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 30px;
    background: #ff9a9e;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 0 0 15px 15px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(98, 0, 238, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--primary-color);
}

/* Value Proposition Banner */
.value-prop-banner {
    position: relative;
    background: white;
    margin: 20px auto 0;
    max-width: 900px;
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.value-prop-banner::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(98, 0, 238, 0.05), rgba(187, 134, 252, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.banner-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    border-radius: 16px;
    margin-right: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
    transform: rotate(-5deg);
}

.banner-content {
    flex: 1;
    z-index: 1;
}

.banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.banner-desc {
    font-size: 16px;
    color: var(--grey-color);
    margin-bottom: 0;
}

.banner-action {
    min-width: 150px;
    margin-left: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    font-weight: 600;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.2);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(74, 222, 128, 0.3);
    color: white;
}

.banner-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.banner-btn:hover i {
    transform: scale(1.2);
}

/* Trust Indicators */
.trust-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(45deg, rgba(98, 0, 238, 0.1), rgba(187, 134, 252, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.trust-text {
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .pricing-carousel {
        padding: 20px 10px;
        margin: 0 -10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .price-card {
        flex: 0 0 auto;
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: center;
        margin: 0 10px;
        display: flex !important;
        flex-direction: column;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    /* Custom scrollbar for carousel */
    .pricing-carousel::-webkit-scrollbar {
        height: 6px;
    }
    
    .pricing-carousel::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }
    
    .pricing-carousel::-webkit-scrollbar-thumb {
        background: rgba(98, 0, 238, 0.2);
        border-radius: 10px;
    }
    
    .pricing-carousel::-webkit-scrollbar-thumb:hover {
        background: rgba(98, 0, 238, 0.4);
    }
}

@media (max-width: 992px) {
    .pricing {
        padding: 10px 0;
    }
    
    .value-prop-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .banner-icon {
        margin-right: 0;
        margin-bottom: 20px;
        transform: rotate(0);
    }
    
    .banner-action {
        margin-left: 0;
        margin-top: 25px;
        width: 100%;
    }
    
    .banner-btn {
        width: 100%;
    }
    
    .trust-row {
        justify-content: center;
    }
    
    .trust-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .toggle-option {
        padding: 15px 5px;
        min-height: 40px;
        position: relative;
        z-index: 5;
        -webkit-tap-highlight-color: transparent;
    }
    
    .tab-option:active {
        opacity: 0.8;
    }
    
    .trust-item {
        flex: 0 0 100%;
    }
    
    /* Force display of data-term cards on mobile */
    .price-card[data-term] {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }
    
    /* Improve mobile toggle */
    .pricing-toggle {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Adjust carousel navigation for mobile */
    .carousel-nav {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }
    
    .carousel-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        width: 100%;
    }
    
    .trust-item {
        padding: 15px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.testimonial-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    padding: 0 10px;
    line-height: 1.6;
}

.quote::before, .quote::after {
    content: '"';
    font-size: 30px;
    color: rgba(98, 0, 238, 0.1);
    position: absolute;
}

.quote::before {
    top: -10px;
    left: -15px;
}

.quote::after {
    bottom: -20px;
    right: -15px;
}

.author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.author .name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.author .position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-control {
    display: none;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .testimonial-wrapper {
        overflow: visible;
    }
    
    .testimonial-slider {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        width: 100%;
    }
    
    .testimonial {
        flex: 1;
        min-width: 280px;
        max-width: 400px;
        transform: none !important;
    }
    
    .testimonial:hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 767px) {
    .testimonial-slider {
        display: flex;
        width: 300%; /* Makes room for all 3 testimonials */
        transition: transform 0.5s ease;
        gap: 0;
    }
    
    .testimonial {
        width: 33.333%; /* Each testimonial takes 1/3 of the slider */
        min-width: 33.333%;
        max-width: 33.333%;
        flex: 0 0 auto;
        padding: 20px;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: visible;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-content {
        padding: 0 5px;
    }
    
    .quote {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .author .name {
        font-size: 1rem;
    }
    
    .author .position {
        font-size: 0.8rem;
    }
    
    .testimonial-control {
        display: flex;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* CTA Section */
.cta {
    background: var(--gradient-bg);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d3a 0%, #1a1a24 100%);
    color: white;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.support {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.support h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.support-text {
    margin-bottom: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    width: 100%;
    justify-content: center;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4a4a65;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 74, 101, 0.2);
    width: 100%;
}

.email-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.email-btn:hover {
    background-color: #5f5f82;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 74, 101, 0.3);
}

.support-hours {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.support-hours i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 10px;
}

.support-hours span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.badge {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.badge i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.legal {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal p {
    margin-bottom: 10px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid #f0f0f0;
}

.cta-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff5252;
    border-radius: 50%;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-pulse:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 82, 82, 0.7);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.cta-content {
    margin-left: 24px;
    flex: 1;
}

.cta-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff5252, #ff8a00);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.mobile-cta p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.cta-btn {
    background: linear-gradient(135deg, #8253ff, #5f31f5);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(95, 49, 245, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(95, 49, 245, 0.4);
}

.cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .hero-content {
        margin-right: 30px;
        margin-bottom: 0;
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .step {
        width: 23%;
    }
    
    .testimonial-slider {
        flex-direction: row;
    }
    
    .testimonial {
        width: calc(33.333% - 20px);
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

@media (max-width: 767px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

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

.feature-card, .pricing-card, .step, .testimonial, .faq-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* New Canva Showcase Styles */
.canva-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.device-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: deviceFloat 8s ease-in-out infinite;
}

.device-frame {
    position: absolute;
    width: 90%;
    height: 85%;
    top: 5%;
    left: 5%;
    background: linear-gradient(145deg, #222222, #444444);
    border-radius: 18px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform-style: preserve-3d;
    z-index: 10;
}

.canva-screen {
    position: absolute;
    width: 95%;
    height: 92%;
    top: 4%;
    left: 2.5%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-header {
    height: 50px;
    background: #6200ee;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.pro-badge {
    background: #ffd700;
    color: #333;
    font-size: 12px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 8px;
    margin-left: 8px;
    animation: pulsateBadge 2s infinite;
}

.screen-content {
    flex: 1;
    background: #f6f6f6;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.design-area {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.design-shape {
    position: absolute;
    border-radius: 8px;
    animation: moveAround 12s ease-in-out infinite;
}

.shape-1 {
    width: 35%;
    height: 25%;
    background: linear-gradient(135deg, #bb86fc, #6200ee);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 25%;
    height: 15%;
    background: linear-gradient(135deg, #03dac6, #018786);
    bottom: 20%;
    left: 15%;
    animation-delay: -3s;
}

.shape-3 {
    width: 20%;
    height: 30%;
    background: linear-gradient(135deg, #ff0266, #d50000);
    top: 20%;
    right: 10%;
    animation-delay: -6s;
}

.shape-4 {
    width: 18%;
    height: 18%;
    background: linear-gradient(135deg, #ffab40, #ff6e40);
    bottom: 25%;
    right: 15%;
    animation-delay: -9s;
}

.design-text {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.floating-features {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 30;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
    animation: slideInTags 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-tag:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-tag:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-tag:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-tag i {
    color: #6200ee;
}

.device-reflection {
    position: absolute;
    width: 90%;
    height: 20px;
    bottom: -20px;
    left: 5%;
    background: rgba(0, 0, 0, 0.8);
    filter: blur(10px);
    border-radius: 50%;
    transform: scaleX(0.8);
    opacity: 0.3;
    z-index: 5;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    color: #6200ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    animation: floatDevice 6s ease-in-out infinite;
}

.elem-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.elem-2 {
    bottom: 30%;
    right: 8%;
    animation-delay: -2s;
}

.elem-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes deviceFloat {
    0%, 100% {
        transform: translateY(0) rotateX(2deg);
    }
    50% {
        transform: translateY(-15px) rotateX(0deg);
    }
}

@keyframes moveAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5px, 10px) rotate(5deg);
    }
    50% {
        transform: translate(0, 5px) rotate(0deg);
    }
    75% {
        transform: translate(-5px, -5px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes pulsateBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    }
}

@keyframes floatDevice {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes slideInTags {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .canva-showcase {
        height: 300px;
    }
    
    .device-frame {
        width: 85%;
        height: 80%;
        top: 10%;
        left: 7.5%;
    }
    
    .floating-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .feature-tag {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Initial state for long-term plans */
.price-card[data-term="long"] {
    display: none;
}

/* Smoother transition for toggle slider */
.toggle-slider {
    transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Enhanced card appearance */
.price-card {
    transition: all 0.4s ease-out;
    opacity: 1;
    transform: translateY(0);
}

.price-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* New Pricing Tabs Design */
.pricing-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    z-index: 5;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
}

.tab-option {
    padding: 12px 24px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 25px;
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.tab-option.active {
    color: white;
    font-weight: 700;
}

.tab-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(33.333% - 12px);
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    border-radius: 25px;
    transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(98, 0, 238, 0.3);
}

.tab-option:nth-child(2).active ~ .tab-slider {
    left: calc(33.333% + 2px);
}

.tab-option:nth-child(3).active ~ .tab-slider {
    left: calc(66.666% - 2px);
}

/* Price cards styling improvements */
.price-card[data-term] {
    transition: all 0.4s ease-out;
    opacity: 0;
    display: none;
    transform: translateY(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.price-card[data-term="15days"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.pricing-tabs .tab-option {
    width: 25%;  /* Equal width for 4 tabs */
}

.pricing-tabs .tab-slider {
    width: 25%;  /* Slider width matches tab width */
    transition: left 0.3s ease;
}

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
    .pricing-tabs {
        width: 95%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 5px;
    }
    
    .tab-option {
        padding: 15px 5px;
        font-size: 14px;
        min-width: 0;
        white-space: nowrap;
    }
    
    .tab-slider {
        top: 5px;
        height: calc(100% - 10px);
    }
    
    /* Return to horizontal scrollable layout for pricing cards */
    .pricing-carousel {
        display: flex;
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding: 15px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    /* For mobile, make all cards visible with scrolling */
    .price-card[data-term] {
        display: block;
        margin-right: 15px;
        min-width: 270px;
        width: 80% !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        transition: all 0.3s ease;
        margin-bottom: 0;
    }
    
    .price-card[data-term]:not(.active) {
        opacity: 0.6;
        transform: scale(0.95);
    }
    
    .price-card[data-term].active {
        opacity: 1;
        transform: scale(1);
        border: 2px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(98, 0, 238, 0.15);
    }
    
    /* Adjust price card header for mobile */
    .price-card-header {
        padding: 15px;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    /* Show the navigation dots clearly */
    .term-nav {
        display: flex;
        justify-content: center;
        margin: 10px 0 15px;
    }
    
    .term-nav .carousel-dot {
        width: 12px;
        height: 12px;
        background-color: rgba(98, 0, 238, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .term-nav .carousel-dot.active {
        width: 30px;
        border-radius: 20px;
        background-color: var(--primary-color);
    }
    
    /* Add scrollbar styling for better UX */
    .pricing-carousel::-webkit-scrollbar {
        height: 4px;
    }
    
    .pricing-carousel::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }
    
    .pricing-carousel::-webkit-scrollbar-thumb {
        background: rgba(98, 0, 238, 0.3);
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .pricing-tabs {
        max-width: 350px;
    }
    
    .tab-option {
        padding: 8px 4px;
        font-size: 13px;
    }
    
    /* Tighter layout for very small screens */
    .price-card {
        padding: 15px;
    }
    
    .price-features li {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .price-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Reduce margin between pricing elements */
.term-nav {
    margin: 10px 0 15px;
}

.pricing-tabs {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .term-nav {
        margin: 10px 0 15px;
    }
    
    .pricing-showcase {
        margin-bottom: 20px;
    }
}

/* Responsive pricing card improvements */
@media (max-width: 768px) {
    /* Fix pricing carousel scrolling for touch devices */
    .pricing-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 10px 20px;
        margin: 0 -10px;
        width: calc(100% + 20px);
        /* Hide scrollbar on some browsers while keeping functionality */
        scrollbar-width: none; /* Firefox */
    }
    
    .pricing-carousel::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    /* Ensure cards are properly sized for mobile */
    .price-card[data-term] {
        min-width: 260px;
        width: 85% !important;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0 5px;
        transform-origin: center center;
    }
    
    /* Smaller screens need more compact cards */
    .price-card-header {
        padding: 20px 20px 15px;
    }
    
    .price-card-body {
        padding: 20px;
    }
    
    /* Ensure proper tab visibility */
    .tab-option {
        font-size: 13px;
        padding: 10px 5px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .pricing-tabs {
        width: 100%;
        max-width: 280px;
    }
    
    .tab-option {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .price-card[data-term] {
        min-width: 240px;
        width: 90% !important;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-card-header {
        padding: 15px 15px 10px;
    }
    
    .price-card-body {
        padding: 15px;
    }
    
    .price-features li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .price-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Mobile-first tab improvements */
@media (max-width: 768px) {
    .pricing-tabs {
        width: 92%;
        max-width: 350px;
        margin: 0 auto 30px;
        touch-action: manipulation;
    }
    
    .tab-option {
        min-height: 44px; /* Apple's recommended minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent; /* Remove default mobile tap highlight */
        padding: 10px 5px;
        touch-action: manipulation;
        user-select: none;
    }
    
    /* Make tabs more clickable by expanding their hit area */
    .tab-option::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        z-index: -1;
    }
    
    /* Add visual feedback when tabs are touched */
    .tab-option:active {
        opacity: 0.7;
    }
    
    /* Fix tab slider for exact positioning */
    .tab-slider {
        transition: left 0.25s ease-out;
    }
}

/* Pricing plan visibility classes */
.pricing-plan {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-plan.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.pricing-plan.hidden {
    opacity: 0;
    transform: translateY(10px);
    display: none;
}

/* On mobile, handle plans differently */
@media (max-width: 768px) {
    .pricing-plan.hidden {
        display: block; /* Show all plans on mobile */
        opacity: 0.7; /* Just fade them slightly */
        transform: scale(0.95);
    }
    
    .pricing-plans-container {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Improve price card visibility states */
.price-card {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.price-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* On mobile, handle cards differently */
@media (max-width: 768px) {
    .price-card {
        display: block;
        opacity: 0.6;
        transform: scale(0.95);
        transition: all 0.3s ease;
    }
    
    .price-card.active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }
}

/* Fix for price card visibility and transitions */
.price-card {
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.price-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Make tabs more responsive to clicks */
.tab-option {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
}

/* Ensure tab slider transitions smoothly */
.tab-slider {
    transition: left 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

/* Improve mobile layout */
@media (max-width: 768px) {
    .price-card {
        opacity: 0.5;
        transform: scale(0.95);
        display: block; /* Always show on mobile but faded */
    }
    
    .price-card.active {
        opacity: 1;
        transform: scale(1);
        z-index: 5;
    }
    
    /* Make tabs easier to tap */
    .tab-option {
        min-height: 44px; /* iOS minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Visual feedback on tap */
    .tab-option:active {
        opacity: 0.7;
    }
} 

@media (max-width: 767px) {
    /* ... existing code ... */
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-options {
        width: 100%;
    }
    
    .whatsapp-btn, .email-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-slider {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 10px 0;
        margin: 0 auto;
        gap: 0;
        position: relative;
    }
    
    .testimonial {
        padding: 25px;
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
        transition: transform 0.5s ease;
        margin-right: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .quote {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .testimonial-control {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .testimonial-dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }
}

.testimonial-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-wrapper {
        overflow: visible;
    }
    
    .testimonial-slider {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        width: 100%;
    }
    
    .testimonial {
        flex: 1;
        min-width: 280px;
        max-width: 400px;
        transform: none !important;
    }
    
    .testimonial:hover {
        transform: translateY(-10px) !important;
    }
}