/* --- RESET & VARIABLES --- */
:root {
    --primary: #8b5cf6; /* Violet */
    --primary-dark: #7c3aed;
    --secondary: #6366f1; /* Indigo */
    --dark: #0f172a; /* Deep Navy/Black */
    --text: #334155; /* Slate Grey */
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body {
    /* 1. Base Color */
    background-color: #ffffff;

    /* 2. The Background Stack (Grid + Glows) */
    background-image: 
        /* The Grid Lines (Vertical & Horizontal) - very faint grey */
        linear-gradient(#f3f4f6 1px, transparent 1px),
        linear-gradient(90deg, #f3f4f6 1px, transparent 1px),

        /* Top-Left Subtle Glow (Purple-ish) */
        radial-gradient(circle at 0% 10%, rgba(147, 51, 234, 0.07) 0%, transparent 50%),

        /* Center-Right Subtle Glow (Blue-ish) */
        radial-gradient(circle at 100% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);

    /* 3. Control the Grid Size here */
    background-size: 
        50px 50px,   /* Size of the squares (Grid) */
        50px 50px,   /* Size of the squares (Grid) */
        100% 100%,   /* Gradient size */
        100% 100%;   /* Gradient size */

    /* 4. Formatting */
    background-repeat: repeat, repeat, no-repeat, no-repeat;
    min-height: 100vh;
    margin: 0;
    font-family: sans-serif; /* Preserving your font settings */
}

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.small-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 12px 24px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s; font-size: 0.95rem; cursor: pointer; }
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39); border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139, 92, 246, 0.23); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--dark); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.full-width { width: 100%; text-align: center; }

/* --- NAVBAR --- */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.5rem; color: var(--dark); }
.logo-img { height: 32px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--dark); cursor: pointer; }

/* --- HERO SECTION --- */
.hero { padding: 180px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

.badge-pill { display: inline-block; background: #f3e8ff; color: var(--primary-dark); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; border: 1px solid #e9d5ff; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; color: var(--dark); margin-bottom: 24px; letter-spacing: -1px; }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; max-width: 550px; }
.cta-row { display: flex; gap: 16px; margin-bottom: 40px; }

.trust-badge { 
    margin-top: 20px; 
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-images {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-img:first-child {
    margin-left: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stars { 
    color: #fbbf24; 
    font-size: 1.05rem;
}

.trust-badge p { 
    font-size: 0.9rem; 
    margin: 0; 
    color: var(--text); 
}

/* Hero Visual (The Cards) */
.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }

.visual-card { background: var(--white); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); position: absolute; }
.main-card { width: 300px; height: 320px; top: 50px; left: 50px; z-index: 1; display: flex; flex-direction: column; padding: 25px; }
.chart-header { display: flex; justify-content: space-between; margin-bottom: 20px; font-weight: 700; }
.green-text { color: #10b981; }
.chart-bars { display: flex; align-items: flex-end; justify-content: space-between; height: 100%; }
.bar { width: 14%; background: #e2e8f0; border-radius: 50px 50px 0 0; }
.bar.active { background: var(--gradient); }

/* Floating Badges */
.float-1 { top: 20px; right: 0; display: flex; gap: 12px; align-items: center; padding: 12px 20px; animation: float 6s infinite ease-in-out; }
.float-2 { bottom: 60px; right: 20px; display: flex; gap: 12px; align-items: center; padding: 12px 20px; animation: float 7s infinite ease-in-out 1s; }

.icon-circle { width: 40px; height: 40px; border-radius: 10px; background: #dbeafe; color: #2563eb; display: flex; align-items: center; justify-content: center; }
.icon-circle.purple { background: #f3e8ff; color: #9333ea; }
.text strong { display: block; font-size: 0.95rem; color: var(--dark); }
.text span { font-size: 0.8rem; color: var(--text-light); }

/* --- MEDIA CAROUSEL --- */
.media-carousel-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-header h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.carousel-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.media-logo-item {
    flex-shrink: 0;
    width: 280px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.3s ease;
}

.media-logo-item:hover {
    filter: none;
}

.media-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
}

.media-logo-item:hover img {
    filter: none;
}

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

/* --- SECTIONS GENERAL --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 16px; }
.section-header p { font-size: 1.15rem; color: var(--text-light); }

/* --- SERVICES (Bento Grid) --- */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bento-card { background: var(--white); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); transition: 0.3s; }
.bento-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow); }
.bento-card.large { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.icon-box { width: 50px; height: 50px; background: #f3e8ff; color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 20px; }
.icon-box.blue { background: #dbeafe; color: #2563eb; }
.icon-box.green { background: #d1fae5; color: #059669; }
.icon-box.orange { background: #ffedd5; color: #ea580c; }

.bento-card h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--dark); }
.bento-card p { font-size: 1rem; color: var(--text-light); line-height: 1.6; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); }
.feature-list i { color: #10b981; }

/* --- PROCESS --- */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: left; padding: 20px; }
.step-number { font-size: 3rem; font-weight: 800; color: #e2e8f0; margin-bottom: 10px; }
.step h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 12px; }

/* --- COMPARISON TABLE --- */
.comparison-wrapper { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 40px; box-shadow: var(--shadow); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 20px; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table th { font-size: 1.1rem; color: var(--text-light); font-weight: 600; }
.text-center { text-align: center; }
.highlight-col { background: #f8fafc; color: var(--primary-dark); }
.comp-table tr:last-child td { border-bottom: none; }

/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 50px; position: relative; transition: 0.3s; min-height: 500px; }
.price-card:hover { transform: translateY(-5px); }
.price-card.popular { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: var(--shadow); z-index: 2; }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; }

.price { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin: 10px 0; }
.price span { font-size: 1rem; color: var(--text-light); font-weight: 500; }
.sub-price { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 30px; }
.price-card ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: var(--text); }

/* --- FAQ --- */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 16px; overflow: hidden; }
.faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--white); font-weight: 600; color: var(--dark); }
.faq-answer { padding: 0 20px 20px 20px; color: var(--text-light); display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active i { transform: rotate(180deg); }

/* --- CTA FINAL --- */
.cta-final { text-align: center; }
.cta-box { background: var(--dark); color: white; padding: 80px 20px; border-radius: 24px; max-width: 1000px; margin: 0 auto; background-image: url('assets/Zapper\ Gradient.png'); background-size: cover; }
.cta-box h2 { font-size: 3rem; margin-bottom: 20px; }
.cta-box p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 40px; }

/* --- FOOTER --- */
footer { background: var(--white); padding: 80px 0 20px; border-top: 1px solid var(--border); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand h3 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.socials { margin-top: 20px; display: flex; gap: 16px; font-size: 1.2rem; }
.socials a { color: var(--text-light); transition: 0.3s; }
.socials a:hover { color: var(--primary); }
.footer-links h4 { font-size: 0.9rem; text-transform: uppercase; color: var(--text-light); letter-spacing: 1px; margin-bottom: 20px; }
.footer-links a { display: block; color: var(--dark); text-decoration: none; margin-bottom: 12px; font-weight: 500; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: var(--text-light); padding-top: 30px; border-top: 1px solid var(--border); font-size: 0.9rem; }

/* --- ANIMATIONS --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p, .section-header { margin-left: auto; margin-right: auto; }
    .cta-row { justify-content: center; }
    .hero-visual { display: none; } /* Hide complex visual on tablet/mobile for safety */
    .bento-grid, .pricing-grid, .process-steps { grid-template-columns: 1fr; }
    .bento-card.large { grid-template-columns: 1fr; grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .socials { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-toggle { display: block; }
    .hero-text h1 { font-size: 2.5rem; }
    .stats-wrapper { flex-direction: column; gap: 30px; }
    .stat-divider { width: 60px; height: 1px; }
    .comparison-wrapper { overflow-x: scroll; }
}

/* --- NEW: THE ZPR STANDARD (Replaces Comparison Table) --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    /* Clean, modern shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

/* Middle Card Highlight Style */
.value-card.highlight {
    background: var(--gradient);
    color: white;
    border: none;
    /* Add a slight glow to the highlight card */
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
}

.value-card.highlight h3, 
.value-card.highlight p,
.value-card.highlight .card-number {
    color: white;
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f1f5f9; /* Light grey for standard cards */
    margin-bottom: 20px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mini-tag {
    display: inline-block;
    margin-top: 25px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.mini-tag.white {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
}

/* --- NEW: FAQ MESH BACKGROUND --- */
/* Add this class to your FAQ section in HTML */
.faq-section {
    position: relative;
    background-color: #ffffff;
    /* Mesh Gradient Effect */
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,96%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,98%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,96%,1) 0, transparent 50%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; /* Keeps the blob contained */
}

/* Floating Blob Decoration for FAQ */
.faq-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CONTACT PAGE STYLES --- */

/* Header Area */
.contact-header {
    padding: 160px 0 60px; /* Account for fixed navbar */
    text-align: center;
}
.contact-header h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Split Grid Layout */
.contact-section {
    padding-bottom: 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info takes less space, Form takes more */
    gap: 80px;
    align-items: start;
}

/* Left Side: Info */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark);
}
.check-list {
    list-style: none;
    margin-bottom: 50px;
}
.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.check-list i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 4px;
}
.check-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}
.check-list p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.direct-contact h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.direct-contact a {
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.direct-contact a:hover {
    color: var(--primary);
}

/* Right Side: Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-header h1 {
        font-size: 2.5rem;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}