/* ============================================
   JETVIRAL — Premium Agency
   FeedForge-inspired | Dark Hero + Light Sections
   Blue & Green Accent | Bold Typography
   ============================================ */

:root {
    --dark: #0a0a0a;
    --dark-card: #141414;
    --dark-border: #222;
    --light: #fafafa;
    --light-card: #ffffff;
    --light-border: #e8e8e8;
    --text-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted-dark: #6b6b6b;
    --text-muted-light: #a0a0a0;
    --accent: #10b981;
    --accent-soft: rgba(16,185,129,0.08);
    --blue: #2563eb;
    --blue-soft: rgba(37,99,235,0.06);
    --radius: 16px;
    --radius-lg: 24px;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hide old elements */
.particles { display: none; }

/* ============================================
   BUTTONS
   ============================================ */

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,185,129,0.25);
}

.btn-main svg { transition: transform 0.2s; }
.btn-main:hover svg { transform: translate(2px, -2px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HERO — Dark
   ============================================ */

.hero {
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: none;
}

.hero-logo {
    height: 64px;
    width: auto;
    margin-bottom: 48px;
    animation: fadeIn 0.6s ease both;
}

.pulse-dot {
    display: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7.5vw, 5.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-light);
    margin-bottom: 28px;
}

.hero-line { display: block; }

.hero-h1 em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
}

.hero-h1 .accent {
    color: var(--accent);
}

.hero-p {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-p strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Staggered hero animations */
.hero-badge { animation: fadeUp 0.5s ease 0.1s both; }
.hero-h1 .hero-line:nth-child(1) { animation: fadeUp 0.5s ease 0.2s both; }
.hero-h1 .hero-line:nth-child(2) { animation: fadeUp 0.5s ease 0.32s both; }
.hero-h1 .hero-line:nth-child(3) { animation: fadeUp 0.5s ease 0.44s both; }
.hero-p { animation: fadeUp 0.5s ease 0.56s both; }
.hero-actions { animation: fadeUp 0.5s ease 0.68s both; }

/* ============================================
   MARQUEE
   ============================================ */

.marquee-section {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track { overflow: hidden; }

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted-light);
    flex-shrink: 0;
}

.marquee-item svg { color: var(--accent); }
.marquee-item strong { color: var(--text-light); font-weight: 600; }

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

/* ============================================
   SERVICES — Light
   ============================================ */

.services-section {
    padding: 120px 24px;
    background: var(--light);
}

.overline {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-h2 em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--light-card);
    border: 1px solid var(--light-border);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   STATS — Dark
   ============================================ */

.stats-section {
    padding: 100px 24px;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

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

.stat-block {}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-light);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-block p {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    margin-top: 6px;
    line-height: 1.5;
}

/* ============================================
   PRICING — Light
   ============================================ */

.pricing-section {
    padding: 120px 24px;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--light-card);
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.price-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}

.price-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(37,99,235,0.12);
}

.featured-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 0 0 10px 10px;
    background: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.price-header { margin-bottom: 12px; }

.plan-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    display: block;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.rupee { font-size: 1.2rem; font-weight: 500; color: var(--text-muted-dark); }

.price-val {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.featured .price-val { color: var(--blue); }

.price-per { font-size: 0.9rem; color: var(--text-muted-dark); margin-left: 4px; }

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-muted-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-list {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-list li {
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.plan-list li:last-child { border-bottom: none; }

.btn-card {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    color: var(--text-dark);
    border: 1.5px solid var(--light-border);
    transition: all 0.25s;
}

.btn-card:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
}

.btn-card-fill {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.btn-card-fill:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.2);
}

/* Guarantee */
.guarantee-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: var(--radius);
    background: var(--accent-soft);
    border: 1px solid rgba(16,185,129,0.12);
}

.guarantee-bar svg { color: var(--accent); flex-shrink: 0; }
.guarantee-bar strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.guarantee-bar span { font-size: 0.85rem; color: var(--text-muted-dark); }

@media (max-width: 600px) {
    .guarantee-bar { flex-direction: column; text-align: center; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 120px 24px;
    background: var(--light);
    border-top: 1px solid var(--light-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }

.test-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--light-card);
    border: 1px solid var(--light-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.test-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}

.test-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.test-quote {
    font-size: 0.92rem;
    color: var(--text-muted-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.test-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.test-author span { font-size: 0.75rem; color: var(--text-muted-dark); }

/* ============================================
   CTA — Dark
   ============================================ */

.cta-section {
    padding: 120px 24px;
    background: var(--dark);
    text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-h2 em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
}

.cta-p {
    font-size: 1rem;
    color: var(--text-muted-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.cta-pills span {
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82rem;
    color: var(--text-muted-light);
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
    padding: 120px 24px;
    background: var(--light);
}

.faq-section .container { max-width: 700px; }

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    border-radius: var(--radius);
    background: var(--light-card);
    border: 1px solid var(--light-border);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active { border-color: var(--blue); }

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-btn:hover { color: var(--blue); }

.faq-plus {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted-dark);
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-plus { transform: rotate(45deg); color: var(--blue); }

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    padding: 0 22px;
}

.faq-item.active .faq-body {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-body p { font-size: 0.9rem; color: var(--text-muted-dark); line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */

.contact-section {
    padding: 120px 24px;
    background: var(--light);
    border-top: 1px solid var(--light-border);
}

.contact-inner { max-width: 540px; margin: 0 auto; text-align: center; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    margin-top: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 12px;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.06);
}

.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: var(--light-card); }

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    padding: 48px 24px;
    background: var(--dark);
}

.footer-inner { text-align: center; }

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 8px;
}

.footer-brand p { font-size: 0.82rem; color: var(--text-muted-light); margin-bottom: 6px; }

.footer-address { font-size: 0.78rem; color: var(--text-muted-light); margin-bottom: 4px; }

.footer-phone { margin-bottom: 20px; }
.footer-phone a { color: var(--accent); text-decoration: none; font-weight: 500; font-size: 0.85rem; }

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 0.75rem; color: #555; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.pricing-grid .price-card:nth-child(2) { transition-delay: 0.08s; }
.pricing-grid .price-card:nth-child(3) { transition-delay: 0.16s; }
.testimonials-grid .test-card:nth-child(2) { transition-delay: 0.08s; }
.testimonials-grid .test-card:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .stat-block:nth-child(2) { transition-delay: 0.06s; }
.stats-grid .stat-block:nth-child(3) { transition-delay: 0.12s; }
.stats-grid .stat-block:nth-child(4) { transition-delay: 0.18s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 100px 20px 80px; }
    .hero-h1 { font-size: 2.6rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-main,
    .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 2.2rem; }
}

/* Selection */
::selection { background: rgba(16,185,129,0.15); }
