/* ============================================================
   Tickeazy Marketing Website — marketing.css
   Company: Mindreams Infotech Private Limited
   Colors: Primary #047857 | Accent #0EA5A4 | BG #F8FAFC | Text #1F2937
   ============================================================ */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding-top: 64px;
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1F2937;
    background: #F8FAFC;
}

a { color: #047857; text-decoration: none; }
a:hover { color: #065f46; text-decoration: underline; }

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

/* ----- Navbar ----- */
.mkt-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.mkt-navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.mkt-navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #047857;
    text-decoration: none;
}

.mkt-navbar-brand img { height: 40px; width: auto; }

.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mkt-nav-links a {
    font-size: .93rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: color .2s;
}

.mkt-nav-links a:hover { color: #047857; text-decoration: none; }

.mkt-btn-nav {
    background: #047857;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background .2s;
}
.mkt-btn-nav:hover { background: #065f46 !important; text-decoration: none; }

/* Mobile hamburger */
.mkt-navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.mkt-navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: .3s;
}

/* ----- Buttons ----- */
.mkt-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    border: none;
}

.mkt-btn-primary {
    background: #047857;
    color: #fff;
}
.mkt-btn-primary:hover { background: #065f46; color: #fff; text-decoration: none; }

.mkt-btn-secondary {
    background: transparent;
    color: #047857;
    border: 2px solid #047857;
}
.mkt-btn-secondary:hover { background: #047857; color: #fff; text-decoration: none; }

.mkt-btn-white {
    background: #ffffff;
    color: #047857;
}
.mkt-btn-white:hover { background: #f0fdf4; color: #065f46; text-decoration: none; }

.mkt-btn-accent {
    background: #0EA5A4;
    color: #fff;
}
.mkt-btn-accent:hover { background: #0891a0; color: #fff; text-decoration: none; }

/* ----- Container ----- */
.mkt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Hero Section ----- */
.mkt-hero {
    background: linear-gradient(135deg, #047857 0%, #0EA5A4 100%);
    color: #fff;
    padding: 96px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mkt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 200%;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.mkt-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.mkt-hero p {
    font-size: 1.2rem;
    opacity: .92;
    max-width: 620px;
    margin: 0 auto 36px;
}

.mkt-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.mkt-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
}

.mkt-hero-stat {
    text-align: center;
}

.mkt-hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.mkt-hero-stat .stat-label {
    font-size: .88rem;
    opacity: .85;
}

/* ----- Section Generic ----- */
.mkt-section {
    padding: 80px 24px;
}

.mkt-section-alt {
    background: #ffffff;
}

.mkt-section-title {
    text-align: center;
    margin-bottom: 56px;
}

.mkt-section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
}

.mkt-section-title p {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto;
}

.mkt-section-label {
    display: inline-block;
    background: #d1fae5;
    color: #047857;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* ----- Features Grid ----- */
.mkt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.mkt-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow .2s, transform .2s;
}

.mkt-feature-card:hover {
    box-shadow: 0 8px 24px rgba(4,120,87,.12);
    transform: translateY(-3px);
}

.mkt-feature-icon {
    width: 52px;
    height: 52px;
    background: #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #047857;
}

.mkt-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111827;
}

.mkt-feature-card p {
    font-size: .93rem;
    color: #6b7280;
    margin: 0;
}

/* ----- Why section ----- */
.mkt-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mkt-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkt-why-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.mkt-why-list li .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #d1fae5;
    color: #047857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.mkt-why-visual {
    background: linear-gradient(135deg, #047857, #0EA5A4);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.mkt-why-visual .big-stat {
    font-size: 4rem;
    font-weight: 900;
    display: block;
}

/* Image Wrapper for Why Tickeazy */
.mkt-why-image-wrapper {
    padding: 0;
    overflow: hidden;
}

.mkt-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.mkt-dashboard-img:hover {
    transform: scale(1.02);
}

/* Mock Dashboard Visual */
.mkt-mock-dashboard {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    color: #111827;
    text-align: left;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 360px;
    animation: fade-in-up 0.6s ease-out;
}

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

.mkt-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 16px;
}

.mkt-mock-title {
    font-weight: 700;
    font-size: 1rem;
    color: #374151;
}

.mkt-mock-badge {
    background: #d1fae5;
    color: #047857;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mkt-mock-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.mkt-mock-stat {
    display: flex;
    flex-direction: column;
}

.mkt-mock-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.mkt-mock-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
}

.mkt-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 8px;
}

.mkt-mock-bar {
    flex: 1;
    background: #d1fae5;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s;
}

.mkt-mock-bar-active {
    background: #047857;
    box-shadow: 0 -4px 12px rgba(4, 120, 87, 0.2);
}

.mkt-mock-recent {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fafb;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.mkt-mock-recent-icon {
    width: 32px;
    height: 32px;
    background: #0EA5A4;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mkt-mock-recent-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mkt-mock-recent-text strong {
    font-size: 0.85rem;
    color: #1f2937;
}

.mkt-mock-recent-text span {
    font-size: 0.75rem;
    color: #6b7280;
}

.mkt-mock-time {
    font-size: 0.7rem;
    color: #9ca3af;
    white-space: nowrap;
}

/* ----- How It Works ----- */
.mkt-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
}

.mkt-step {
    text-align: center;
    padding: 24px;
}

.mkt-step-number {
    width: 56px;
    height: 56px;
    background: #047857;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.mkt-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111827;
}

.mkt-step p {
    font-size: .92rem;
    color: #6b7280;
    margin: 0;
}

/* ----- Industries ----- */
.mkt-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.mkt-industry-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: box-shadow .2s, border-color .2s;
    cursor: default;
}

.mkt-industry-card:hover {
    border-color: #047857;
    box-shadow: 0 4px 16px rgba(4,120,87,.1);
}

.mkt-industry-card .icon { font-size: 2rem; margin-bottom: 10px; }
.mkt-industry-card span { font-size: .9rem; font-weight: 600; color: #374151; }

/* ----- Pricing / Business Model ----- */
.mkt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.mkt-pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 28px;
    background: #ffffff;
    text-align: center;
    position: relative;
    transition: box-shadow .2s;
}

.mkt-pricing-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); }

.mkt-pricing-card.featured {
    border-color: #047857;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.mkt-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #047857;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
}

.mkt-pricing-card h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; color: #111827; }

.mkt-pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #047857;
    margin: 12px 0;
}

.mkt-pricing-price span { font-size: 1rem; font-weight: 400; color: #9ca3af; }

.mkt-pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.mkt-pricing-features li {
    padding: 6px 0;
    font-size: .92rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mkt-pricing-features li::before {
    content: '✓';
    color: #047857;
    font-weight: 700;
    flex-shrink: 0;
}

/* ----- Trust / Testimonials ----- */
.mkt-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mkt-trust-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
}

.mkt-trust-card .quote {
    font-size: .95rem;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 20px;
}

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

.mkt-trust-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #047857, #0EA5A4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.mkt-trust-name { font-weight: 700; font-size: .92rem; color: #111827; }
.mkt-trust-role { font-size: .82rem; color: #6b7280; }

/* ----- Event Cards ----- */
.mkt-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.mkt-event-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.mkt-event-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-3px);
    text-decoration: none;
}

.mkt-event-banner {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #047857, #0EA5A4);
}

.mkt-event-banner-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #047857 0%, #0EA5A4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
}

.mkt-event-body { padding: 20px; }

.mkt-event-organizer {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 6px;
}

.mkt-event-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.3;
}

.mkt-event-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.mkt-event-meta span {
    font-size: .85rem;
    color: #6b7280;
}

.mkt-event-meta .fa { width: 16px; color: #047857; margin-right: 6px; }

.mkt-event-badge {
    display: inline-block;
    background: #d1fae5;
    color: #047857;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

/* ----- Contact form ----- */
.mkt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mkt-contact-info h3 { font-size: 1.4rem; font-weight: 700; margin: 0 0 16px; }

.mkt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.mkt-contact-item .icon {
    width: 40px;
    height: 40px;
    background: #d1fae5;
    color: #047857;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt-form-group { margin-bottom: 20px; }
.mkt-form-group label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; color: #374151; }

.mkt-form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: #1F2937;
    background: #ffffff;
    transition: border-color .2s, box-shadow .2s;
}

.mkt-form-control:focus {
    outline: none;
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(4,120,87,.12);
}

textarea.mkt-form-control { resize: vertical; }

/* ----- CTA Banner ----- */
.mkt-cta-banner {
    background: linear-gradient(135deg, #047857 0%, #0EA5A4 100%);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
    border-radius: 20px;
    margin: 0 24px;
}

.mkt-cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin: 0 0 16px; }
.mkt-cta-banner p { font-size: 1.1rem; opacity: .92; max-width: 540px; margin: 0 auto 32px; }

/* ----- Footer ----- */
.mkt-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 24px 28px;
    margin-top: 0;
}

.mkt-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.mkt-footer-brand { color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; display: block; }

.mkt-footer-tagline { font-size: .9rem; opacity: .7; margin-bottom: 20px; }

.mkt-footer h4 { color: #fff; font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }

.mkt-footer ul { list-style: none; padding: 0; margin: 0; }
.mkt-footer ul li { margin-bottom: 10px; }
.mkt-footer ul li a { color: #9ca3af; font-size: .9rem; text-decoration: none; transition: color .2s; }
.mkt-footer ul li a:hover { color: #fff; text-decoration: none; }

.mkt-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1f2937;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .85rem;
    color: #6b7280;
}

/* ----- Legal pages ----- */
.mkt-legal-hero {
    background: linear-gradient(135deg, #047857, #0EA5A4);
    color: #fff;
    padding: 60px 24px 50px;
    text-align: center;
}

.mkt-legal-hero h1 { font-size: 2.2rem; font-weight: 800; margin: 0 0 10px; }
.mkt-legal-hero p { opacity: .88; font-size: 1rem; margin: 0; }

.mkt-legal-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.mkt-legal-body h2 { font-size: 1.4rem; font-weight: 700; color: #111827; margin: 40px 0 12px; }
.mkt-legal-body h3 { font-size: 1.1rem; font-weight: 700; color: #374151; margin: 28px 0 10px; }
.mkt-legal-body p { color: #374151; line-height: 1.8; margin: 0 0 16px; }
.mkt-legal-body ul { color: #374151; line-height: 1.8; padding-left: 24px; margin-bottom: 16px; }
.mkt-legal-body ul li { margin-bottom: 6px; }

/* ----- FAQ ----- */
.mkt-faq-list { max-width: 780px; margin: 0 auto; }

/* FAQ styles moved to FAQ PAGE section below */

/* ----- Pagination ----- */
.mkt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* Number buttons (fixed 40×40 square) */
.mkt-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    color: #374151;
    text-decoration: none;
    transition: all .2s;
}
.mkt-page-num:hover { border-color: #047857; color: #047857; text-decoration: none; }
.mkt-page-num.current { background: #047857; color: #fff; border-color: #047857; cursor: default; }

/* Previous / Next pill buttons (auto width) */
.mkt-page-prev,
.mkt-page-next {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid #047857;
    color: #047857;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}
.mkt-page-prev:hover,
.mkt-page-next:hover {
    background: #047857;
    color: #fff;
    text-decoration: none;
}
.mkt-page-prev.disabled,
.mkt-page-next.disabled {
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: default;
    pointer-events: none;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .mkt-hero h1 { font-size: 2rem; }
    .mkt-hero p { font-size: 1rem; }

    .mkt-nav-links {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        gap: 16px;
        box-shadow: 0 8px 16px rgba(0,0,0,.08);
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 24px;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
    }

    .mkt-nav-links.open {
        max-height: 400px;
        opacity: 1;
        padding: 20px 24px;
        pointer-events: auto;
    }
    .mkt-navbar-toggle { display: flex !important; }

    .mkt-why-grid,
    .mkt-contact-grid { grid-template-columns: 1fr; }

    .mkt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .mkt-cta-banner { margin: 0 16px; border-radius: 14px; }

    .mkt-section-title h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .mkt-footer-grid { grid-template-columns: 1fr; }
    .mkt-hero-stats { gap: 24px; }
    .mkt-hero-cta { flex-direction: column; align-items: center; }
}

/* ===================================================================
   INNER PAGE HERO (for legal, events, about, contact pages)
=================================================================== */

.mkt-page-hero {
    background: linear-gradient(135deg, #047857 0%, #0EA5A4 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.mkt-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.mkt-page-hero p {
    font-size: 1.1rem;
    opacity: .85;
    margin: 0;
}

/* ===================================================================
   LEGAL PAGE BODY
=================================================================== */

.mkt-legal-body {
    max-width: 820px;
    margin: 0 auto;
    color: #374151;
    line-height: 1.8;
}

.mkt-legal-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 12px;
    padding-top: 8px;
    border-top: 2px solid #f0fdf4;
}

.mkt-legal-body h2:first-of-type { margin-top: 8px; border-top: none; }

/* Legal pages: reduce hero → content gap */
.mkt-section:has(.mkt-legal-body) { padding-top: 36px; }

.mkt-legal-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin: 24px 0 8px;
}

.mkt-legal-body p { margin: 0 0 16px; }

.mkt-legal-body ul, .mkt-legal-body ol {
    padding-left: 24px;
    margin: 0 0 16px;
}

.mkt-legal-body ul li, .mkt-legal-body ol li {
    margin-bottom: 6px;
}

.mkt-legal-body address {
    font-style: normal;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 24px;
    line-height: 2;
    margin: 16px 0;
}

.mkt-legal-info-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 32px;
    font-size: .95rem;
    line-height: 2;
    color: #065f46;
}

.mkt-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: .9rem;
}

.mkt-table th {
    background: #047857;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.mkt-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.mkt-table tr:nth-child(even) td { background: #f9fafb; }

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

.mkt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.mkt-contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #fff;
    transition: box-shadow .2s;
}

.mkt-contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }

.mkt-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f0fdf4;
    color: #047857;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mkt-contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.mkt-contact-card p {
    font-size: .88rem;
    color: #6b7280;
    margin: 0 0 4px;
}

.mkt-contact-card a {
    font-size: .9rem;
    font-weight: 600;
    color: #047857;
    text-decoration: none;
}

.mkt-contact-card a:hover { text-decoration: underline; }

.mkt-contact-info-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
}

.mkt-contact-info-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}

.mkt-contact-info-box p {
    font-size: .9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

.mkt-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.mkt-social-btn:hover {
    border-color: #047857;
    color: #047857;
    text-decoration: none;
}

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

.mkt-faq-wrapper { max-width: 780px; margin: 0 auto; }

.mkt-faq-category {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #047857;
    display: inline-block;
}

.mkt-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.mkt-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    user-select: none;
    gap: 16px;
    transition: background .15s;
}

.mkt-faq-question:hover { background: #f9fafb; }

.mkt-faq-arrow {
    color: #047857;
    flex-shrink: 0;
    transition: transform .25s;
}

.mkt-faq-item.open .mkt-faq-arrow { transform: rotate(180deg); }

.mkt-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.7;
}

.mkt-faq-item.open .mkt-faq-answer {
    max-height: 600px;
    padding: 16px 24px 20px;
}

/* ===================================================================
   EMPTY STATE (events page when no events)
=================================================================== */

.mkt-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.mkt-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.mkt-empty-state h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.mkt-empty-state p {
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto 28px;
}

/* ===================================================================
   ELEGANCE UPGRADES — Lucide icons, active nav, refined shadows
=================================================================== */

/* ----- Lucide SVG sizing inside icon containers ----- */
.mkt-feature-icon svg,
.mkt-why-list .icon svg,
.mkt-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

/* active nav consolidated at end of file */

/* ----- Navbar — backdrop blur for premium glass effect ----- */
.mkt-navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,.97) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.03);
}

/* Larger logo, no text */
.mkt-navbar-brand img { height: 48px; }

/* ----- Section label — refined badge ----- */
.mkt-section-label {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #6ee7b7;
    color: #065f46;
    font-weight: 800;
}

/* ----- Feature cards — multi-layer shadow ----- */
.mkt-feature-card {
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
    border-color: #f0f4f8;
    border-radius: 14px;
}
.mkt-feature-card:hover {
    box-shadow: 0 8px 32px rgba(4,120,87,.14);
    border-color: #a7f3d0;
    transform: translateY(-4px);
}

/* Feature icon — gradient background */
.mkt-feature-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 14px;
    color: #047857;
}

/* ----- Buttons — depth and lift ----- */
.mkt-btn-primary {
    box-shadow: 0 2px 8px rgba(4,120,87,.28);
    transition: all .2s;
}
.mkt-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(4,120,87,.4);
    transform: translateY(-1px);
}
.mkt-btn-secondary { transition: all .2s; }
.mkt-btn-secondary:hover {
    box-shadow: 0 4px 12px rgba(4,120,87,.2);
    transform: translateY(-1px);
}
.mkt-btn-white { transition: all .2s; }
.mkt-btn-white:hover { transform: translateY(-1px); }
.mkt-btn-nav { transition: all .2s; box-shadow: 0 2px 6px rgba(4,120,87,.2); }
.mkt-btn-nav:hover { box-shadow: 0 4px 12px rgba(4,120,87,.35) !important; transform: translateY(-1px); }

/* ----- Hero stats — glass cards ----- */
.mkt-hero-stat {
    padding: 18px 26px;
    background: rgba(255,255,255,.13);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .2s;
}
.mkt-hero-stat:hover { background: rgba(255,255,255,.2); }

/* ----- Hero gradient — deeper, richer ----- */
.mkt-hero {
    background: linear-gradient(135deg, #064E3B 0%, #047857 55%, #0d9488 100%);
}

/* ----- Why visual — premium depth ----- */
.mkt-why-visual {
    background: linear-gradient(135deg, #064E3B 0%, #047857 55%, #0d9488 100%);
    box-shadow: 0 20px 60px rgba(4,78,59,.25);
    border-radius: 20px;
}

/* ----- Steps — gradient numbers ----- */
.mkt-step-number {
    background: linear-gradient(135deg, #047857, #0d9488);
    box-shadow: 0 4px 16px rgba(4,120,87,.3);
}

/* ----- Testimonials — hover lift ----- */
.mkt-trust-card {
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.mkt-trust-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

/* ----- CTA Banner — deeper gradient ----- */
.mkt-cta-banner {
    background: linear-gradient(135deg, #064E3B 0%, #047857 55%, #0d9488 100%);
    box-shadow: 0 20px 60px rgba(4,78,59,.18);
}

/* ----- Contact card icon — Lucide sizing ----- */
.mkt-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

/* ----- Contact info-box — spacing between boxes ----- */
.mkt-contact-info-box + .mkt-contact-info-box {
    margin-top: 24px;
}

/* ----- Form row (side-by-side fields) ----- */
.mkt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .mkt-form-row { grid-template-columns: 1fr; }
}

/* ----- Form error text ----- */
.mkt-form-error {
    display: block;
    font-size: .82rem;
    color: #dc2626;
    margin-top: 4px;
}
.mkt-form-control.is-invalid {
    border-color: #fca5a5;
    box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

/* ----- Alert / messages ----- */
.mkt-alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: .95rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.mkt-alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #14532d;
}
.mkt-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ----- Event meta Lucide icons ----- */
.mkt-event-meta span svg {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-right: 4px;
    color: #047857;
    stroke-width: 2;
}

/* ----- FAQ arrow Lucide ----- */
.mkt-faq-arrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: #047857;
    transition: none;
}
/* Only the wrapper .mkt-faq-arrow rotates; keep the inner SVG still to prevent double-rotation */
.mkt-faq-item.open .mkt-faq-arrow svg { transform: none; }

/* ----- Industry card emoji ----- */
.mkt-industry-card .icon { line-height: 1; }

/* ----- Footer logo ----- */
.mkt-footer-brand-logo {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    opacity: .75;
    filter: brightness(0) invert(1);
}

/* ----- Improved mobile breakpoints ----- */
@media (max-width: 768px) {
    .mkt-page-hero { padding: 60px 0 40px; }
    .mkt-page-hero h1 { font-size: 1.85rem; }
    .mkt-page-hero p { font-size: 1rem; }
    .mkt-hero { padding: 72px 16px 60px; }
    .mkt-hero h1 { font-size: 1.9rem; }
    .mkt-section { padding: 60px 16px; }
    .mkt-contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .mkt-why-grid { grid-template-columns: 1fr; }
    .mkt-cta-banner { margin: 0 12px; padding: 56px 20px; }
    .mkt-features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .mkt-section-title h2 { font-size: 1.7rem; }
    .mkt-hero-stats { gap: 12px; }
    .mkt-hero-stat { padding: 14px 16px; }
}
@media (max-width: 480px) {
    .mkt-features-grid { grid-template-columns: 1fr; }
    .mkt-hero h1 { font-size: 1.6rem; }
    .mkt-page-hero h1 { font-size: 1.5rem; }
    .mkt-footer-grid { grid-template-columns: 1fr; }
}



/* ===== Inline SVG icon base style ===== */
.mkt-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    overflow: visible;
}

/* ===== Outline-white button (hero on dark backgrounds) ===== */
.mkt-btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,.65);
}
.mkt-btn-outline-white:hover {
    background: rgba(255,255,255,.18);
    color: #ffffff;
    border-color: rgba(255,255,255,.9);
    text-decoration: none;
}

/* ===== Active nav link - DEFINITIVE (overrides all previous rules) ===== */
.mkt-nav-links a.active {
    color: #047857 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-bottom: 2px solid #047857;
    padding-bottom: 2px;
}
/* Mobile: active shows as left-border indicator instead of underline */
@media (max-width: 768px) {
    .mkt-nav-links a.active {
        border-bottom: none;
        border-left: 3px solid #047857;
        padding-left: 10px;
        padding-bottom: 0;
        color: #047857 !important;
        font-weight: 700 !important;
    }
}

/* ===== Section spacing - DEFINITIVE (equal 80px desktop, 56px mobile, 40px small) ===== */
/* All section-level blocks share identical vertical rhythm so every gap is equal */
.mkt-section,
.mkt-section-alt,
.mkt-page-hero,
.mkt-legal-hero { padding: 80px 24px !important; }

@media (max-width: 768px) {
    .mkt-section,
    .mkt-section-alt,
    .mkt-page-hero,
    .mkt-legal-hero { padding: 56px 16px !important; }
}
@media (max-width: 480px) {
    .mkt-section,
    .mkt-section-alt,
    .mkt-page-hero,
    .mkt-legal-hero { padding: 40px 16px !important; }
}

/* ===== Scroll-to-top button ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #047857;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(4,120,87,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s, visibility .25s, transform .25s, background .2s;
    z-index: 9999;
}
#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTopBtn:hover {
    background: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4,120,87,.5);
}
@media (max-width: 480px) {
    #scrollTopBtn { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}

/* ===================================================================
   SVG SPRITE — hidden via CSS (no inline styles needed)
=================================================================== */
.mkt-svg-sprite {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    top: -9999px;
    left: -9999px;
    pointer-events: none;
}

/* ===================================================================
   ICON SIZE UTILITIES
=================================================================== */
.mkt-icon-xs { width: 16px !important; height: 16px !important; }
.mkt-icon-sm { width: 18px !important; height: 18px !important; }
.mkt-icon-accent { color: #047857; }

/* ===================================================================
   FOOTER UTILITIES (replaces inline styles in base.html)
=================================================================== */
.mkt-footer-company { font-size: .82rem; color: #6b7280; margin: 0; }
.mkt-footer-company-name { color: #9ca3af; }
.mkt-footer-legal-link { color: #6b7280 !important; }
.mkt-footer-legal-link:hover { color: #047857 !important; }

/* ===================================================================
   LANDING PAGE — WHY SECTION (replaces inline styles)
=================================================================== */
.mkt-why-heading { font-size: 2rem; font-weight: 800; margin: 0 0 20px; color: #111827; }
.mkt-why-desc { color: #6b7280; margin-bottom: 28px; }
.mkt-why-item-desc { margin: 4px 0 0; font-size: .9rem; color: #6b7280; }

/* ===================================================================
   LANDING PAGE — VISUAL CARD (replaces inline styles)
=================================================================== */
.mkt-visual-label { font-size: 1.1rem; margin: 8px 0 6px; font-weight: 700; }
.mkt-visual-desc { opacity: .85; font-size: .95rem; }
.mkt-visual-divider { border-color: rgba(255,255,255,.2); margin: 24px 0; }
.mkt-visual-stats { display: flex; gap: 32px; justify-content: center; }
.mkt-visual-stat-number { font-size: 1.8rem; font-weight: 900; }
.mkt-visual-stat-label { font-size: .82rem; opacity: .8; margin: 4px 0 0; }

/* ===================================================================
   EVENT CARD LINK (already a class, ensure link reset is here)
=================================================================== */
.mkt-event-card { text-decoration: none; display: block; }

/* ===================================================================
   EVENTS PAGE CTA + BUTTON VARIANT
=================================================================== */
.mkt-events-cta { text-align: center; margin-top: 52px; }
.mkt-btn-cta { font-size: 1.05rem !important; padding: 14px 36px !important; }

/* ===================================================================
   ABOUT PAGE UTILITIES
=================================================================== */
.mkt-features-grid-mt { margin-top: 24px; }
.mkt-h2-spaced { margin-top: 48px; }
.mkt-legal-info-box-mt { margin-top: 32px; }
.mkt-cta-center { text-align: center; margin-top: 48px; }
.mkt-btn-mr { margin-right: 16px; }

/* ===================================================================
   FAQ PAGE UTILITIES
=================================================================== */
.mkt-faq-category--later { margin-top: 48px; }
.mkt-faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
}
.mkt-faq-cta-title { margin-bottom: 12px; }
.mkt-faq-cta-desc { color: #6b7280; margin-bottom: 20px; }

/* ===================================================================
   CONTACT PAGE UTILITIES
=================================================================== */
.mkt-contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}
.mkt-contact-form-desc {
    color: #6b7280;
    font-size: .93rem;
    margin-bottom: 28px;
}
.mkt-label-optional { font-weight: 400; color: #9ca3af; }
.mkt-btn-submit {
    width: 100%;
    padding: 14px !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}
.mkt-info-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.mkt-divider { margin: 20px 0; border-color: #e5e7eb; }
.mkt-response-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
    font-size: .9rem;
    color: #374151;
}
.mkt-contact-social-desc { color: #6b7280; font-size: .9rem; margin-bottom: 16px; }
.mkt-social-links { display: flex; gap: 12px; flex-wrap: wrap; }
