@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --primary: #e8443a;
    --primary-dark: #c7362e;
    --primary-light: #ff6b61;
    --primary-ultra-light: #fff0ef;
    --secondary: #f5a623;
    --secondary-light: #fff8eb;
    --text: #1a1a2e;
    --text-muted: #5a5a7a;
    --text-dim: #8e8ea0;
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-bg-hover: rgba(0, 0, 0, 0.04);
    --gradient-1: linear-gradient(135deg, #e8443a, #f5a623);
    --gradient-2: linear-gradient(135deg, #e8443a, #ff6b61);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --body-bg: #fafbfd;
    --card-bg: #ffffff;
    --section-alt-bg: #f5f6fa;
    --dark-3: #f7f8fa;
    --dark-4: #eef0f4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== BG DECORATION ===== */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(232, 68, 58, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 68, 58, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(232, 68, 58, 0.06);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(245, 166, 35, 0.05);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 40px) scale(0.95);
    }
    75% {
        transform: translate(30px, 20px) scale(1.05);
    }
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.btn-primary-custom {
    background: var(--gradient-1);
    color: white !important;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 68, 58, 0.3);
    color: white !important;
}

/* ===== REPORT HERO ===== */
.report-hero {
    padding: 160px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #fff5f4 0%, #fff9f0 40%, #ffffff 100%);
    overflow: hidden;
}

.report-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(232, 68, 58, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.report-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: #10b981;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.report-hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.report-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.report-hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.report-hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.report-hero-date {
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-hero-date i {
    color: var(--primary);
}

/* Hero action buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-hero-action {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hero-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 68, 58, 0.3);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--glass-border);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* ===== STICKY NAV BAR ===== */
.sticky-nav {
    position: fixed !important;  /* Sticky ki jagah fixed use karo */
    top: 0 !important;  /* Top se 0 */
    left: 0;
    right: 0;
    z-index: 99999;
    background: white;
    border-bottom: 2px solid var(--primary);
    padding: 0;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sticky-nav.visible {
    display: block !important;
}

/* Body padding top for fixed nav */
body.has-sticky-nav {
    padding-top: 60px;  /* Nav ki height ke according */
}

.sticky-nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.sticky-nav-inner::-webkit-scrollbar {
    display: none;
}

.sticky-nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.sticky-nav-link:hover,
.sticky-nav-link.active {
    background: var(--primary-ultra-light);
    color: var(--primary);
}

/* ===== SECTION STYLES ===== */
.report-section {
    padding: 60px 0;
    position: relative;
}

.report-section:nth-child(even) {
    background: var(--section-alt-bg);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-ultra-light);
    border: 1px solid rgba(232, 68, 58, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== INPUT SUMMARY CARD ===== */
.input-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 32px;
}

.input-summary-header {
    background: var(--gradient-1);
    padding: 24px 32px;
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
}

.input-summary-header-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.input-summary-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.input-summary-header p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.input-summary-body {
    padding: 28px 32px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-4);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-ultra-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 16px;
}

.detail-label {
    width: 180px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    padding-top: 2px;
}

.detail-value {
    flex: 1;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    word-break: break-word;
}

/* ===== STRATEGY CARDS ===== */
.strategy-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.strategy-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(232, 68, 58, 0.15);
}

.strategy-card-accent {
    height: 4px;
    background: var(--gradient-1);
}

.strategy-card-accent.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.strategy-card-accent.blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.strategy-card-accent.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.strategy-card-accent.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.strategy-card-body {
    padding: 28px;
}

.strategy-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-card-title i {
    color: var(--primary);
    font-size: 16px;
}

.strategy-card-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.strategy-card-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.strategy-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.strategy-card-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gradient-1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.strategy-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 6px;
}

.tag-primary {
    background: var(--primary-ultra-light);
    color: var(--primary);
}
.tag-green {
    background: #dcfce7;
    color: #16a34a;
}
.tag-blue {
    background: #dbeafe;
    color: #2563eb;
}
.tag-purple {
    background: #ede9fe;
    color: #7c3aed;
}
.tag-orange {
    background: #fef3c7;
    color: #d97706;
}

/* ===== TABLES ===== */
.table-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 24px 0;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.custom-table thead th {
    background: var(--gradient-1);
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
}

.custom-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--dark-4);
    color: var(--text-muted);
    font-size: 14px;
}

.custom-table tbody tr:last-child td {
    border-bottom: none;
}

.custom-table tbody tr:hover td {
    background: var(--dark-3);
}

.custom-table tbody td:first-child {
    font-weight: 600;
    color: var(--text);
}

/* Match type badges */
.match-badge {
    display: inline-flex;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.match-exact {
    background: #dcfce7;
    color: #16a34a;
}
.match-phrase {
    background: #dbeafe;
    color: #2563eb;
}
.match-broad {
    background: #fef3c7;
    color: #d97706;
}

/* Intent badges */
.intent-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.intent-purchase {
    background: var(--primary-ultra-light);
    color: var(--primary);
}
.intent-high {
    background: #fef3c7;
    color: #d97706;
}

/* Negative keyword tags */
.neg-keywords-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.neg-keyword-tag {
    padding: 6px 16px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.neg-keyword-tag i {
    font-size: 10px;
}

/* ===== AD ANGLE CARDS ===== */
.angle-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.angle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 68, 58, 0.15);
    box-shadow: 0 12px 40px rgba(232, 68, 58, 0.08);
}

.angle-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px 0;
}

.angle-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232, 68, 58, 0.2);
}

.angle-meta {
    flex: 1;
}

.angle-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.trigger-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trigger-badge i {
    font-size: 10px;
}

.badge-fear {
    background: #fee2e2;
    color: #dc2626;
}
.badge-aspiration {
    background: #dbeafe;
    color: #2563eb;
}
.badge-curiosity {
    background: #fef3c7;
    color: #d97706;
}
.badge-social {
    background: #dcfce7;
    color: #16a34a;
}
.badge-contrast {
    background: #ede9fe;
    color: #7c3aed;
}
.badge-urgency {
    background: #ffe4e6;
    color: #e11d48;
}
.badge-simplicity {
    background: #f0fdfa;
    color: #0d9488;
}
.badge-specificity {
    background: #fff7ed;
    color: #ea580c;
}

.angle-card-body {
    padding: 20px 28px 24px;
}

.angle-headline-wrap {
    padding: 16px 20px;
    background: var(--dark-3);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    margin-bottom: 16px;
}

.angle-headline-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.angle-headline {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.angle-body-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.angle-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: var(--dark-3);
    border-top: 1px solid var(--dark-4);
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.platform-tag i {
    color: var(--primary);
}

.btn-copy-angle {
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-copy-angle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-copy-angle.copied {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* ===== PRIORITY CARDS ===== */
.priority-card {
    background: var(--card-bg);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.priority-header {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.priority-header-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.priority-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.priority-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.priority-body {
    padding: 24px 28px;
}

.priority-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.priority-row:hover {
    transform: translateX(6px);
}

.priority-row-1 {
    background: linear-gradient(135deg, #fffbeb, #fef9e7);
    border: 1px solid #fde68a;
}

.priority-row-2 {
    background: linear-gradient(135deg, #f5f3ff, #eef2ff);
    border: 1px solid #c4b5fd;
}

.priority-row-3 {
    background: linear-gradient(135deg, #fff1f2, #fff5f5);
    border: 1px solid #fecdd3;
}

.priority-row-4 {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
}

.priority-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    color: white;
}

.rank-1 {
    background: var(--secondary);
}
.rank-2 {
    background: #7c3aed;
}
.rank-3 {
    background: #ec4899;
}
.rank-4 {
    background: #10b981;
}

.priority-content {
    flex: 1;
}

.priority-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.priority-reason {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== BUDGET SECTION ===== */
.budget-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.budget-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.budget-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.budget-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.budget-stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.budget-stat-label {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
}

/* ===== PERFORMANCE TABLE ===== */
.perf-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.perf-metric-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.perf-metric-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.perf-metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.perf-metric-sub {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    margin-top: 4px;
}

/* ===== INSIGHT BLOCKS ===== */
.insight-block {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.insight-block-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-block-title i {
    color: var(--primary);
    font-size: 16px;
}

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

.insight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid var(--dark-4);
}

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

.insight-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gradient-1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.insight-why {
    background: var(--primary-ultra-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-top: 16px;
}

.insight-why-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

.insight-why-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CHECKLIST ===== */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.checklist-item:hover {
    background: var(--dark-3);
    border-color: var(--primary);
}

.checklist-icon {
    width: 28px;
    height: 28px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    background: var(--gradient-1);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-box::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

/* ===== TOAST ===== */
.toast-custom {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-card-hover);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-custom.show {
    transform: translateX(0);
}
.toast-icon {
    font-size: 16px;
    color: #10b981;
}
.toast-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* Scroll top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 68, 58, 0.25);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 68, 58, 0.35);
}

/* Animation */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-custom {
    background: white;
    border-radius: 24px;
    padding: 32px;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-custom {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dim);
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--dark-3);
    color: var(--text);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-ultra-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}

.modal-custom h3 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text);
}

.modal-custom p {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.modal-input-group {
    margin-bottom: 20px;
}

.modal-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.modal-input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--dark-4);
    border-radius: 14px;
    font-size: 15px;
    transition: var(--transition);
    font-family: "Inter", sans-serif;
}

.modal-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 68, 58, 0.1);
}

.modal-input-group input.error {
    border-color: #dc2626;
    background: #fee2e2;
}

.modal-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.modal-error.show {
    display: block;
}

.btn-modal {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 68, 58, 0.3);
}

.btn-modal i {
    font-size: 14px;
}

.modal-footer-text {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-dim);
}

.modal-footer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.ast-container {
    display: block !important;
}
a.menu-link {
    color: black !important;
}
.ast-primary-header-bar .main-header-menu .current-menu-item > a,
.home .ast-primary-header-bar .main-header-menu .current_page_item > a {
    color: #ff6400 !important;
}
.ast-desktop .ast-menu-hover-style-zoom > .menu-item > .menu-link:hover {
    color: #ff6400 !important;
}
.custom-logo {
    content: url(https://dmtechlabs.us/wp-content/uploads/2025/09/aa33f30c-4774-459a-b261-7941bf24f8e1.png) !important;
}
.header-email .mail-text:hover {
    color: black !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .detail-row {
        flex-direction: column;
        gap: 6px;
    }
    .detail-icon {
        display: none;
    }
    .detail-label {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-box {
        padding: 40px 24px;
    }
    .cta-box h3 {
        font-size: 1.5rem;
    }

    .budget-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .report-hero {
        padding-top: 130px;
    }
    .report-hero h1 {
        font-size: 28px;
    }
    .budget-overview {
        grid-template-columns: 1fr 1fr;
    }
    .input-summary-header {
        padding: 20px;
    }
    .input-summary-body {
        padding: 20px;
    }
}

