/* Premium Glassmorphism & Galaxy Styling for Marqvera */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
    background-color: transparent;
    /* Background handled by galaxy.js WebGL */
    overflow-x: hidden;
}

/* Galaxy Container - Fixed behind everything */
.galaxy-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

.galaxy-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050510;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Header Styles */
header {
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

header h1 {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #a0a0b0;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-weight: 300;
}

/* Navigation Menu Styles */
.main-nav {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px #ffffff;
}

.main-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 40%;
}

.main-nav a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

/* Shared Glassmorphism Panel Class */
.glass-panel {
    background: rgba(20, 20, 25, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Section Shared Styles */
section {
    position: relative;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #a0a0b0;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-line-1 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #e0e0e0;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a0a0b0;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 1);
    color: #000000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Stats Showcase */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem;
    border-radius: 24px;
    background: rgba(20, 20, 25, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    color: #aaaaaa;
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    color: #9090a0;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(20, 20, 25, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

.service-card p {
    color: #a0a0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-hover-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-hover-overlay {
    bottom: 2rem;
    opacity: 1;
}

.service-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.2rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 25, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    display: block;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #808090;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Global Utility Classes (used in other pages) */
.glass-container {
    background: rgba(20, 20, 25, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
}

/* Footer Container */
footer {
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-left h3 {
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 60px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-tagline {
    color: #808090;
    letter-spacing: 0.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-center h4,
.footer-right h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a0a0b0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #606070;
    font-size: 0.9rem;
}

/* What is Marqvera / About Section */
.what-is-marqvera {
    background: rgba(20, 20, 25, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    padding: 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.intro-container {
    padding: 5rem 3rem;
}

.section-title-large {
    font-size: 3.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.15rem;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 4rem;
}

.intro-highlight {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
    letter-spacing: 0.05rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

/* Why Marqvera / Extra sections */
.why-marqvera-section,
.process-section,
.query-section,
.industries-section,
.social-platforms-container {
    background: rgba(20, 20, 25, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.why-marqvera-section h3,
.process-section h3,
.industries-section h3,
.query-title,
.social-platforms-container h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 0.12rem;
}

.query-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.benefits-grid,
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .platforms-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card,
.process-card,
.platform-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.benefit-card h4,
.process-card h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 1rem 0;
}

.benefit-card p,
.process-card p {
    color: #a0a0b0;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.process-card:hover .step-number {
    color: #ffffff;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Service Page Platform Icons specific */
.platform-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 0 1.5rem 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
}

.platform-icon-large svg {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.platform-box:hover {
    transform: translateY(-10px) scale(1.05);
}

.platform-box:hover .platform-icon-large {
    transform: rotate(360deg) scale(1.1);
}

.platform-box:hover .platform-icon-large svg {
    transform: scale(1.2);
}

/* Platform Colors */
.instagram-box:hover {
    border-color: #e1306c;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.instagram-box .platform-icon-large {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-box .platform-icon-large svg {
    color: white;
}

.youtube-box:hover {
    border-color: #FF0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-box .platform-icon-large {
    background: #FF0000;
}

.youtube-box .platform-icon-large svg {
    color: white;
}

.facebook-box:hover {
    border-color: #1877f2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.facebook-box .platform-icon-large {
    background: #1877f2;
}

.facebook-box .platform-icon-large svg {
    color: white;
}

.twitter-box:hover {
    border-color: #1DA1F2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.twitter-box .platform-icon-large {
    background: #000000;
    border: 2px solid #1DA1F2;
}

.twitter-box .platform-icon-large svg {
    color: #1DA1F2;
}

.linkedin-box:hover {
    border-color: #0077b5;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
}

.linkedin-box .platform-icon-large {
    background: #0077b5;
}

.linkedin-box .platform-icon-large svg {
    color: white;
}

.tiktok-box:hover {
    border-color: #00f2ea;
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.3);
}

.tiktok-box .platform-icon-large {
    background: #000000;
    border: 2px solid #00f2ea;
}

.tiktok-box .platform-icon-large svg {
    color: #00f2ea;
}

.platform-box h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 1rem 0 0.5rem;
    letter-spacing: 0.08rem;
}

.platform-box p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: rgba(20, 20, 25, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 3rem;
}

.pricing-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.12rem;
}

.pricing-subtitle,
.query-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.pricing-note a {
    color: #ffffff;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-badge,
.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
}

.plan-price .currency,
.plan-price .period {
    color: #a0a0b0;
    font-size: 1.2rem;
}

.price-strike {
    text-decoration: line-through;
    color: #808090;
    display: block;
    margin-bottom: 0.5rem;
}

.savings-badge {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    display: inline-block;
}

.plan-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.feature-icon {
    color: #ffffff;
    font-weight: bold;
}

/* Contact Section specific */
.query-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Input Fields & Forms */
input,
textarea,
select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(20, 20, 25, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

::placeholder {
    color: #606070;
}

button[type="submit"] {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

button[type="submit"]:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    transition: transform 0.3s ease;
}
.mobile-menu-btn svg {
    width: 32px;
    height: 32px;
}
.mobile-menu-btn.active {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    header h1 {
        font-size: 3rem;
    }

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

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        pointer-events: none;
        margin: 0;
        padding: 0;
        z-index: 1000;
        gap: 2rem;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav a {
        font-size: 1.5rem;
        margin: 0;
    }

    .services-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }

    /* Fix Overflow for containers on mobile */
    .why-marqvera-section,
    .process-section,
    .query-section,
    .industries-section,
    .social-platforms-container,
    .pricing-section {
        padding: 2rem 1.5rem; 
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .platforms-showcase {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 2.5rem;
    }

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .query-title, .why-marqvera-section h3, .process-section h3, .industries-section h3, .social-platforms-container h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}