* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0A0A14;
    --bg-card: rgba(10, 10, 20, 0.7);
    --neon-cyan: #00FFFF;
    --neon-magenta: #FF00FF;
    --neon-yellow: #FFFF00;
    --neon-green: #00FF00;
    --electric-blue: #00D9FF;
    --hot-pink: #FF006E;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0FF;
    --glow-cyan: 0 0 20px #00FFFF, 0 0 40px #00FFFF;
    --glow-magenta: 0 0 20px #FF00FF, 0 0 40px #FF00FF;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scroll Reveal Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Cyberpunk Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 0, 255, 0.05) 25%, rgba(255, 0, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 255, 0.05) 75%, rgba(255, 0, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 3px
    );
    pointer-events: none;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-magenta);
    color: var(--neon-magenta);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.nav-cta:hover {
    background: var(--neon-magenta);
    color: #000;
    box-shadow: var(--glow-magenta);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    text-transform: uppercase;
}

.hero .glitch-text {
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.3rem 3.5rem;
    background: var(--neon-cyan);
    border: none;
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--glow-cyan);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px #00FFFF, 0 0 60px #00FFFF;
}

.btn-secondary {
    padding: 1.3rem 3.5rem;
    background: transparent;
    border: 3px solid var(--neon-magenta);
    color: var(--neon-magenta);
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--neon-magenta);
    color: #000;
    transform: translateY(-4px);
    box-shadow: var(--glow-magenta);
}

/* Neon Shapes */
.neon-shape {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
    opacity: 0.6;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    border-color: var(--neon-magenta);
    box-shadow: var(--glow-magenta);
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.03) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.section-header .label {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: var(--glow-cyan);
    font-family: 'Orbitron', monospace;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.section-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-cyan);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-magenta);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 3px solid var(--neon-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    box-shadow: var(--glow-magenta);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(180deg) scale(1.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 6rem 5%;
    background: rgba(10, 10, 20, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-magenta);
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.stars {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-yellow);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    box-shadow: var(--glow-cyan);
    font-family: 'Orbitron', monospace;
}

.author-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--neon-cyan);
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.03) 0%, transparent 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-cyan);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.pricing-card.featured {
    border: 3px solid var(--neon-magenta);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.pricing-card.featured .badge {
    position: absolute;
    top: -20px;
    right: 30px;
    padding: 0.7rem 2rem;
    background: var(--neon-magenta);
    color: #000;
    font-size: 0.85rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--glow-magenta);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.8);
}

.plan-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plan-price {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
    line-height: 1;
}

.plan-price span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.plan-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.plan-features li::before {
    content: '▶';
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1rem;
}

.plan-btn {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: 3px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.plan-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.pricing-card.featured .plan-btn {
    background: var(--neon-magenta);
    border: none;
    color: #000;
    box-shadow: var(--glow-magenta);
}

.pricing-card.featured .plan-btn:hover {
    box-shadow: 0 0 40px #FF00FF;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    border-top: 2px solid var(--neon-cyan);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 -5px 30px rgba(0, 255, 255, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: var(--neon-magenta);
    text-shadow: var(--glow-magenta);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive - Mobile & Tablet Optimizations */
@media (max-width: 1024px) {
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .neon-shape {
        opacity: 0.4;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
        right: 5%;
        top: 20%;
    }
    
    .shape-2 {
        width: 180px;
        height: 180px;
        left: 2%;
        bottom: 25%;
    }
}

@media (max-width: 768px) {
    /* Navigation for Mobile */
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 3px solid var(--neon-cyan);
        box-shadow: -5px 0 30px rgba(0, 255, 255, 0.5);
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 6rem 5% 3rem;
        min-height: 100vh;
        background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15) 0%, rgba(255, 0, 255, 0.1) 50%, transparent 100%);
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    /* Sections Mobile */
    .features,
    .testimonials,
    .pricing {
        padding: 4rem 5%;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }

    /* Cards Mobile */
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-card p,
    .testimonial-text {
        font-size: 1.05rem;
    }

    /* Pricing Cards Mobile */
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .plan-price {
        font-size: 3rem;
    }
    
    .pricing-card.featured .badge {
        right: 20px;
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    
    /* Neon Shapes Mobile - Make them visible but smaller */
    .neon-shape {
        opacity: 0.5;
    }
    
    .shape-1 {
        width: 150px;
        height: 150px;
        top: 15%;
        right: -20px;
    }
    
    .shape-2 {
        width: 120px;
        height: 120px;
        bottom: 30%;
        left: -20px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 4%;
    }
    
    .logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .hero {
        padding: 5rem 4% 2rem;
        background: radial-gradient(ellipse at 50% 30%, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.15) 40%, transparent 80%);
    }
    
    .neon-shape {
        opacity: 0.6;
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
        top: 12%;
        right: -10px;
        animation: float 10s ease-in-out infinite;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
        bottom: 35%;
        left: -10px;
        animation: float 12s ease-in-out infinite;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
}