@font-face {
    font-family: 'ABC Arizona Sans';
    src: url('./ABC Arizona/ABC Arizona Sans/ABCArizonaSans-Regular-Trial.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ABC Arizona Sans';
    src: url('./ABC Arizona/ABC Arizona Sans/ABCArizonaSans-Medium-Trial.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'ABC Arizona Sans';
    src: url('./ABC Arizona/ABC Arizona Sans/ABCArizonaSans-Bold-Trial.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'ABC Arizona Sans', system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Header */
.header {
    background: #0039FF;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: 'ABC Arizona Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Applet Selector */
.selector-hero {
    /* background: linear-gradient(135deg, #FFFDF7 0%, #ffffff 100%); */
    padding: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 57, 255, 0.08);
    color: #0039FF;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 57, 255, 0.1);
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #374151;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Applets Section */
.applets-section {
    padding: 4rem 0 5rem;
    /* background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%); */
    border-top: 1px solid #f0f0f0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.applets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.applet-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.applet-card:hover {
    border-color: #0039FF;
    box-shadow: 0 8px 25px rgba(0, 57, 255, 0.12);
    transform: translateY(-2px);
}

.applet-card.coming-soon {
    opacity: 0.8;
    cursor: pointer;
}

.applet-card.coming-soon:hover {
    border-color: #0039FF;
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.15);
}

.applet-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.applet-icon i {
    width: 28px;
    height: 28px;
}

.applet-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000000;
}

.applet-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.applet-stats {
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.stat-item i {
    width: 16px;
    height: 16px;
    color: #0039FF;
}

.applet-btn {
    width: 100%;
    background: linear-gradient(135deg, #0039FF 0%, #3D6BFF 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.875rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.25);
}

.applet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.applet-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0030D6 0%, #2D5BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 57, 255, 0.35);
}

.applet-btn:hover:not(:disabled)::before {
    left: 100%;
}

.applet-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.25);
}

.applet-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    text-align: center;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.stats-header {
    margin-bottom: 3rem;
}

.stats-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
}

.usage-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.usage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.usage-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.usage-icon i {
    width: 24px;
    height: 24px;
}

.usage-number {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.usage-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 5rem 0 4rem;
    /* background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%); */
    border-top: 1px solid #f0f0f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 57, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0039FF;
}

.feature-icon i {
    width: 28px;
    height: 28px;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Applet Pages */
.applet-main {  
    /* background: linear-gradient(135deg, #FFFDF7 0%, #ffffff 100%); */
    padding: 4rem 0 6rem;
}

.applet-hero {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.applet-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.applet-icon-large i {
    width: 40px;
    height: 40px;
}

.applet-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.applet-subtitle {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 3rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
}

.breadcrumb-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-btn:hover {
    color: #0039FF;
}

.breadcrumb-btn i {
    width: 16px;
    height: 16px;
}

.usage-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.usage-indicator i {
    width: 16px;
    height: 16px;
}


/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #FFFDF7 0%, #ffffff 100%); */
    padding: 4rem 0 6rem;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 3rem;
}

/* Search Container */
.search-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto 3rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-container:focus-within {
    border-color: #0039FF;
    box-shadow: 0 0 0 3px rgba(0, 57, 255, 0.1);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
}

.search-input {
    flex: 1;
    padding: 1rem 0;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.search-input::placeholder {
    color: #6b7280;
}

.search-btn {
    background: #0039FF;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: #0030D6;
}

.search-btn i {
    width: 16px;
    height: 16px;
}

/* Recent Searches */
.recent-searches {
    margin-bottom: 2rem;
}

.recent-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.recent-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 500px;
    margin: 0 auto;
}

.recent-item {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-item:hover {
    background: #f3f4f6;
}

.recent-item i {
    width: 14px;
    height: 14px;
    color: #6b7280;
}

/* Stats */
.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.stats-icon {
    font-size: 1rem;
}

/* Buttons */
.btn-primary {
    background: #0039FF;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background: #0030D6;
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    border-color: #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-upgrade {
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1rem;
}

.btn-upgrade:hover {
    transform: translateY(-1px);
}

/* Refinement Page */
.refinement-content {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
}

.refinement-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #000000;
}

.refinement-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 500;
    color: #374151;
}

.filter-select {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #0039FF;
    box-shadow: 0 0 0 3px rgba(0, 57, 255, 0.1);
}

.refinement-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Processing Page - Minimalist Design */
.processing-content {
    max-width: 400px;
    margin: 8rem auto;
    text-align: center;
}

.processing-header {
    margin-bottom: 3rem;
}

.processing-icon {
    margin-bottom: 2rem;
}

.simple-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #0039FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.processing-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.processing-progress {
    margin-top: 2rem;
}

.progress-bar-container {
    width: 100%;
    height: 2px;
    background: #f3f4f6;
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill {
    height: 100%;
    background: #0039FF;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.progress-text {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive Design for Processing */
@media (max-width: 768px) {
    .processing-content {
        margin: 6rem auto;
        padding: 0 1rem;
    }
    
    .processing-title {
        font-size: 1.25rem;
    }
}

/* Results Page */
.results-header {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.results-title {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-actions {
    display: flex;
    gap: 0.5rem;
}

.results-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 4rem;
}

.results-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Strategies */
.strategies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-item {
    border-left: 4px solid #0039FF;
    padding-left: 1rem;
}

.strategy-title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.strategy-examples {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.strategy-example {
    font-size: 0.875rem;
    color: #374151;
}

.strategy-more {
    color: #0039FF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.strategy-more:hover {
    text-decoration: underline;
}

/* Failed Strategies */
.failed-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.failed-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #dc2626;
}

/* Language Section */
.language-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.language-group h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #000000;
}

.language-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-group li {
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* Creative Grid */
.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.creative-thumbnail {
    aspect-ratio: 16/9;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem;
}

.creative-elements h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #000000;
}

.creative-elements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.creative-elements li {
    font-size: 0.875rem;
    color: #374151;
}

/* Campaign Structure */
.structure-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 4px solid #0039FF;
}

.timeline-week {
    font-weight: 600;
    color: #0039FF;
    min-width: 80px;
}

.timeline-content {
    flex: 1;
    color: #374151;
}

.upgrade-prompt {
    margin-top: 1.5rem;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 0.75rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: #000000;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0.25rem;
}

.modal-close:hover {
    color: #374151;
}

.modal-body {
    padding: 1.5rem;
}

/* Share Modal */
.share-link {
    margin-bottom: 2rem;
}

.share-link label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.link-container {
    display: flex;
    gap: 0.5rem;
}

.link-container input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #f9fafb;
    font-size: 0.875rem;
}

.btn-copy {
    background: #0039FF;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-copy:hover {
    background: #0030D6;
}

.share-buttons {
    margin-bottom: 2rem;
}

.share-buttons p {
    margin-bottom: 1rem;
    color: #374151;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: #0039FF;
    color: #0039FF;
}

.share-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.share-info li {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Conversion Benefits */
.conversion-benefits {
    margin: 2rem 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.benefit-icon i {
    width: 24px;
    height: 24px;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-item p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.conversion-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 1rem;
    border: 1px solid #bae6fd;
}

.conversion-cta h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.conversion-cta p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.conversion-signup {
    background: linear-gradient(135deg, #0039FF 0%, #3D6BFF 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.25);
}

.conversion-signup:hover {
    background: linear-gradient(135deg, #0030D6 0%, #2D5BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 57, 255, 0.35);
}

.conversion-signup i {
    width: 16px;
    height: 16px;
}

/* Upgrade Option */
.upgrade-option {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.conversion-upgrade {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.conversion-upgrade:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.conversion-upgrade i {
    width: 16px;
    height: 16px;
}

.upgrade-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tier {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s;
    position: relative;
}

.tier:hover {
    border-color: #0039FF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tier.featured {
    border-color: #0039FF;
    /* background: linear-gradient(135deg, #dbeafe, #ffffff); */
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0039FF;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0039FF;
    margin-bottom: 1.5rem;
}

.tier ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.tier li {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier li i {
    width: 16px;
    height: 16px;
    color: #059669;
}

/* Email capture / Account creation */
.email-capture {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.email-capture.primary-conversion {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.signup-divider {
    position: relative;
    margin-bottom: 2rem;
}

.signup-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.signup-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
}

.email-capture h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.email-capture > p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.signup-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.signup-form input {
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.signup-form input:focus {
    outline: none;
    border-color: #0039FF;
    box-shadow: 0 0 0 3px rgba(0, 57, 255, 0.1);
}

.signup-form input::placeholder {
    color: #9ca3af;
}

.signup-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.signup-terms {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1rem;
    line-height: 1.4;
}

.signup-terms a {
    color: #0039FF;
    text-decoration: none;
}

.signup-terms a:hover {
    text-decoration: underline;
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.success-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 0.5rem;
    text-align: left;
}

.success-feature i {
    width: 24px;
    height: 24px;
    color: #0039FF;
}

/* Request Applets Modal */
.request-content {
    text-align: left;
}

.request-content > p {
    margin-bottom: 2rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.request-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0039FF;
    box-shadow: 0 0 0 3px rgba(0, 57, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-actions .btn-secondary,
.form-actions .btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.form-actions .btn-secondary {
    background: white;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.form-actions .btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.form-actions .btn-primary {
    background: #0039FF;
    color: white;
    border: none;
}

.form-actions .btn-primary:hover {
    background: #0030D6;
}

.form-actions .btn-primary i,
.form-actions .btn-secondary i {
    width: 16px;
    height: 16px;
}

.request-info {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 16px;
    height: 16px;
    color: #0039FF;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .applets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .applets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .usage-stats {
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-btn {
        border-radius: 0 0 0.75rem 0.75rem;
    }
    
    .results-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .language-section {
        grid-template-columns: 1fr;
    }
    
    .creative-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .refinement-actions {
        flex-direction: column;
    }
    
    .filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 0 3.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .applets-section {
        padding: 2.5rem 0 3.5rem;
    }
    
    .usage-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .applet-card {
        padding: 1.75rem 1.25rem;
    }
    
    .features-section {
        padding: 3rem 0 2.5rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
}

/* Badge System */
.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.result-badge.success {
    background: #d1fae5;
    color: #059669;
}

.result-badge.warning {
    background: #fef3c7;
    color: #d97706;
}

.result-badge.info {
    background: #dbeafe;
    color: #1d4ed8;
}

.result-badge.error {
    background: #fee2e2;
    color: #dc2626;
}

.result-badge i {
    width: 12px;
    height: 12px;
}

.strategy-badge, .performance-badge, .impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(0, 57, 255, 0.1);
    color: #0039FF;
}

.performance-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.impact-badge.negative {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.strategy-badge i, .performance-badge i, .impact-badge i {
    width: 10px;
    height: 10px;
}

/* Section Headers with Badges */
.section-header-with-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header-with-badge .section-title {
    margin: 0;
    flex: 1;
}

/* Strategy Items */
.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.strategy-title {
    font-weight: 600;
    color: #000000;
    flex: 1;
}

.strategy-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #0039FF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.75rem;
    transition: color 0.2s;
}

.strategy-more:hover {
    color: #0030D6;
}

.strategy-more i {
    width: 14px;
    height: 14px;
}

/* Failed Items */
.failed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid #dc2626;
}

.failed-icon {
    width: 20px;
    height: 20px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    flex-shrink: 0;
}

.failed-icon i {
    width: 12px;
    height: 12px;
}

.failed-item span {
    flex: 1;
    color: #374151;
}

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

.messaging-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    gap: 1rem;
}

.message-text {
    flex: 1;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

/* Processing Page Improvements */
.processing-content {
    max-width: 500px;
    margin: 4rem auto;
    text-align: center;
}

.processing-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: #f0f9ff;
    border-radius: 0.75rem;
    border: 1px solid #bae6fd;
}

.processing-tip .tip-icon {
    width: 20px;
    height: 20px;
    color: #0284c7;
}

.processing-tip .tip-text {
    font-size: 0.875rem;
    color: #0369a1;
    font-weight: 500;
}

/* Results Page Improvements */
.results-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    background: #fafbfc;
    border-radius: 0.75rem;
    margin: -1rem -1rem 2rem -1rem;
    padding: 2rem;
}

.results-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Consistent spacing */
.results-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.results-section:last-child {
    margin-bottom: 0;
}

/* Remove animations for faster loading - handled in animation classes below */

/* Responsive badge adjustments */
@media (max-width: 768px) {
    .section-header-with-badge {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .strategy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .messaging-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .message-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .failed-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
    animation: slideUp 0.4s ease-out;
}

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

.stagger-animation {
    animation: staggerIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes staggerIn {
    from { 
        opacity: 0; 
        transform: translateY(40px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Smooth transitions for interactive elements */
.applet-card,
.feature-item,
.usage-item {
    will-change: transform;
}

/* Enhanced hover states with subtle motion */
.applet-card:hover {
    transform: translateY(-4px);
}

.feature-item:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: 2rem;
}

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

.footer-text {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-link {
    color: #0039FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0030D6;
    text-decoration: underline;
}

/* Request Applet Conversion Funnel Modal */
.funnel-modal {
    max-width: 700px;
    width: 95%;
}

.funnel-step {
    display: none;
    animation: fadeInSlide 0.3s ease-out;
}

.funnel-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.step-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.step-content {
    margin-bottom: 2rem;
}

/* Option Grid for Step 1 */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.option-card:hover {
    border-color: #0039FF;
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.15);
}

.option-card.selected {
    border-color: #0039FF;
    background: rgba(0, 57, 255, 0.05);
}

.option-card i {
    width: 32px;
    height: 32px;
    color: #0039FF;
    margin-bottom: 0.75rem;
}

.option-card span {
    display: block;
    font-weight: 500;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0039FF;
    box-shadow: 0 0 0 3px rgba(0, 57, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Value Proposition */
.value-prop {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #374151;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item i {
    width: 20px;
    height: 20px;
    color: #0039FF;
}

/* Success Step */
.success-animation {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.success-animation h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.success-animation p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.next-step i {
    width: 20px;
    height: 20px;
    color: #0039FF;
}

/* Modal Footer */
.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.funnel-progress {
    flex: 1;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    width: 25%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-text {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.funnel-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.funnel-actions .btn-primary,
.funnel-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Request Button Styling */
.request-btn {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.request-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35) !important;
}

/* Responsive Design for Funnel */
@media (max-width: 768px) {
    .funnel-modal {
        width: 98%;
        margin: 1rem;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .funnel-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Applet Page Layouts */
.applet-content {
    /* background: linear-gradient(135deg, #FFFDF7 0%, #ffffff 100%); */
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.applet-section {
    max-width: 800px;
    margin: 0 auto;
}

.applet-header-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.applet-icon-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.applet-icon-small i {
    width: 24px;
    height: 24px;
}

.applet-info {
    flex: 1;
}

.applet-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.applet-page-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.search-section {
    margin-bottom: 3rem;
}

.search-suggestions {
    margin-top: 1.5rem;
}

.suggestions-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.suggestion-tag {
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.suggestion-tag:hover {
    border-color: #0039FF;
    color: #0039FF;
    background: rgba(0, 57, 255, 0.05);
}

.applet-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.stat-card:hover {
    border-color: #0039FF;
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 57, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0039FF;
    flex-shrink: 0;
}

.stat-icon i {
    width: 20px;
    height: 20px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Processing Page Updates */
.processing-main {
    /* background: linear-gradient(135deg, #FFFDF7 0%, #ffffff 100%); */
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.processing-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.processing-header {
    margin-bottom: 3rem;
}

.processing-icon {
    margin-bottom: 1.5rem;
}

.processing-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.processing-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* Results Page Updates - Perplexity Style */
.results-main {
    background: #ffffff;
    min-height: calc(100vh - 80px);
    padding: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 2rem 2rem 1.5rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    gap: 2rem;
}

.results-title-section {
    flex: 1;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
    line-height: 1.4;
}

.results-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.results-actions {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    flex-shrink: 0;
}

/* Perplexity-style Results Content */
.results-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.perplexity-answer {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.answer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.answer-icon {
    width: 24px;
    height: 24px;
    background: #0039FF;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.answer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.answer-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

.answer-content p {
    margin-bottom: 1rem;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

/* Sources Section */
.sources-section {
    margin-bottom: 2rem;
}

.sources-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.source-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.source-card:hover {
    border-color: #0039FF;
    box-shadow: 0 2px 8px rgba(0, 57, 255, 0.1);
}

.source-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.source-favicon {
    width: 16px;
    height: 16px;
    border-radius: 0.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.source-info {
    flex: 1;
    min-width: 0;
}

.source-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.source-domain {
    font-size: 0.75rem;
    color: #64748b;
}

.source-snippet {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Key Insights Section */
.insights-section {
    margin-bottom: 2rem;
}

.insights-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.insights-grid {
    display: grid;
    gap: 1rem;
}

.insight-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.insight-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 57, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0039FF;
}

.insight-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.insight-content {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}

.insight-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.metric-value {
    font-weight: 600;
    color: #0039FF;
}

/* Conversion Prompts */
.conversion-prompts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: grid;
    gap: 1.5rem;
}

.follow-up-prompt,
.insights-prompt,
.export-prompt {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.2s ease;
}

.follow-up-prompt:hover,
.insights-prompt:hover,
.export-prompt:hover {
    border-color: #0039FF;
    box-shadow: 0 4px 12px rgba(0, 57, 255, 0.1);
}

.prompt-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.prompt-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 57, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0039FF;
    flex-shrink: 0;
}

.prompt-icon i {
    width: 20px;
    height: 20px;
}

.prompt-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.prompt-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.prompt-signup {
    background: #0039FF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.prompt-signup:hover {
    background: #0030D6;
    transform: translateY(-1px);
}

.prompt-signup i {
    width: 16px;
    height: 16px;
}

/* Share Upgrade Prompt */
.share-upgrade-prompt {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.upgrade-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-icon i {
    width: 20px;
    height: 20px;
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #92400e;
}

.highlight-content p {
    font-size: 0.875rem;
    color: #a16207;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.share-upgrade {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.share-upgrade:hover {
    background: #d97706;
}

.share-upgrade i {
    width: 16px;
    height: 16px;
}

/* Applet Conversion Hint */
.applet-conversion-hint {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.hint-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.hint-icon {
    width: 32px;
    height: 32px;
    background: #0284c7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.hint-icon i {
    width: 16px;
    height: 16px;
}

.hint-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hint-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0369a1;
}

.hint-subtitle {
    font-size: 0.8rem;
    color: #0284c7;
}

.hint-signup {
    background: white;
    color: #0284c7;
    border: 1px solid #0284c7;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hint-signup:hover {
    background: #0284c7;
    color: white;
}

.hint-signup i {
    width: 16px;
    height: 16px;
}

/* Related Topics */
.related-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.related-header {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.related-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-topic {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.related-topic:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* Conversion Prompts */
.conversion-prompts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.follow-up-prompt,
.insights-prompt,
.export-prompt {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.follow-up-prompt:hover,
.insights-prompt:hover,
.export-prompt:hover {
    border-color: #0039FF;
    box-shadow: 0 4px 20px rgba(0, 57, 255, 0.1);
}

.prompt-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prompt-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.prompt-icon i {
    width: 24px;
    height: 24px;
}

.prompt-content {
    flex: 1;
}

.prompt-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.prompt-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.prompt-signup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.prompt-signup i {
    width: 16px;
    height: 16px;
}

/* Share Upgrade Prompt */
.share-upgrade-prompt {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.upgrade-highlight {
    background: linear-gradient(135deg, #fffbeb, #ffffff);
    border: 1px solid #fed7aa;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.highlight-icon i {
    width: 32px;
    height: 32px;
}

.highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.75rem;
}

.highlight-content p {
    color: #a16207;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.share-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.share-upgrade i {
    width: 18px;
    height: 18px;
}

/* Conversion Benefits */
.conversion-benefits {
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0039FF, #3D6BFF);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    width: 28px;
    height: 28px;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.conversion-cta {
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    border: 1px solid #bae6fd;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.conversion-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.conversion-cta p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.conversion-signup {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.conversion-signup i {
    width: 18px;
    height: 18px;
}

/* Responsive Design for Conversion Elements */
@media (max-width: 768px) {
    .prompt-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .conversion-prompts {
        margin-top: 2rem;
    }
    
    .follow-up-prompt,
    .insights-prompt,
    .export-prompt {
        padding: 1rem;
    }
}

/* Applet Badge Styles - Subtle Design */
.applet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.applet-icon {
    flex-shrink: 0;
}

.applet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    flex-shrink: 0;
    border: 1px solid transparent;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.applet-badge.popular {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.applet-badge.new {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.2);
}

.applet-badge.trending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.applet-badge.beta {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    border-color: rgba(168, 85, 247, 0.2);
}

.applet-badge.pro {
    background: rgba(0, 57, 255, 0.1);
    color: #0039FF;
    border-color: rgba(0, 57, 255, 0.2);
}

.applet-badge.coming-soon-badge {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.2);
}

.applet-badge i {
    width: 12px;
    height: 12px;
}

.applet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.applet-btn i {
    width: 16px;
    height: 16px;
}

/* Phosphor Icon Sizing - Override defaults */
i.ph {
    display: inline-block;
    width: 24px !important;
    height: 24px !important;
    vertical-align: middle;
    line-height: 1;
    font-size: 24px !important;
}

/* Icon sizes in different contexts - with !important to override Phosphor defaults */
.hero-badge i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.applet-icon i.ph {
    width: 28px !important;
    height: 28px !important;
    font-size: 28px !important;
}

.applet-icon-small i.ph {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
}

.search-icon.ph {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
    color: #6b7280;
}

.stat-item i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
    color: #0039FF;
}

.usage-icon i.ph {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
}

.feature-icon i.ph {
    width: 28px !important;
    height: 28px !important;
    font-size: 28px !important;
}

.breadcrumb-btn i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.search-btn i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.stat-icon i.ph {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
}

.answer-icon i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
    color: white;
}

.sources-header i.ph,
.insights-header i.ph {
    width: 18px !important;
    height: 18px !important;
    font-size: 18px !important;
    vertical-align: text-bottom;
}

.insight-icon i.ph {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
}

.prompt-icon i.ph {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
}

.prompt-signup i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.highlight-icon i.ph {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
}

.benefit-icon i.ph {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
}

.next-step i.ph {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
}

.funnel-actions i.ph {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
}

.applet-badge i.ph {
    width: 12px !important;
    height: 12px !important;
    font-size: 12px !important;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .applet-header-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .applet-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .results-actions {
        justify-content: center;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .conversion-prompts {
        gap: 1rem;
    }
    
    .follow-up-prompt,
    .insights-prompt,
    .export-prompt {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        text-align: center;
    }
    
    .prompt-header {
        justify-content: center;
        text-align: center;
    }
    
    .upgrade-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .applet-conversion-hint {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hint-content {
        justify-content: center;
        text-align: center;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .signup-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .signup-form {
        max-width: 100%;
        padding: 0 1rem;
    }
}
