/* index.css - Premium Design System for 'Método Prompt Viral' */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
    --bg-primary: #070605;
    --bg-secondary: #0e0d0b;
    --bg-card: rgba(18, 15, 13, 0.7);
    --accent-primary: #ff6b00;
    --accent-secondary: #ff9e00;
    --accent-glow: rgba(255, 107, 0, 0.2);
    --accent-glow-strong: rgba(255, 107, 0, 0.4);
    
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    
    --border-color: rgba(255, 107, 0, 0.12);
    --border-hover: rgba(255, 107, 0, 0.3);
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fundo Técnico com Malha Quadriculada e Glow */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

.background-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    max-width: 1200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.01) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.background-glow-bottom {
    position: fixed;
    bottom: -20%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Estilos de Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-stroke {
    background: linear-gradient(110deg, #ffe6a3 6%, #ffb84d 24%, #ff7a00 42%, #ff3d00 58%, #ff7a00 74%, #ffd089 92%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-shift 5s ease-in-out infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 4px 22px rgba(255, 61, 0, 0.35)) drop-shadow(0 0 2px rgba(255, 184, 77, 0.4));
}

.text-stroke::after {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -6px;
    height: 6px;
    background: linear-gradient(90deg, transparent, #ffd089, #ff3d00, transparent);
    border-radius: 100%;
    filter: blur(2px);
    opacity: 0.85;
    pointer-events: none;
    animation: underline-pulse 3.2s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes underline-pulse {
    0%, 100% {
        opacity: 0.55;
        transform: scaleX(0.85);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.text-mono {
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px 0 rgba(255, 107, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ff8c00 100%);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 1px rgba(255,255,255,0.2);
}

.btn-primary::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:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--accent-glow-strong);
}

.btn-secondary {
    background: rgba(255, 107, 0, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 107, 0, 0.12);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

/* Badge System */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(7, 6, 5, 0.85);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent-primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent-primary);
}

/* Section Common Styles */
section {
    padding: 100px 24px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Hero Section Styling */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-eyebrow {
    display: block;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary) 20%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.6;
    font-weight: 350;
    margin-bottom: 12px;
}

.hero-subtitle strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Stats Container (Inspired by the original product mockup) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 680px;
    margin: 32px auto 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.stat-card {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 6px;
    background: linear-gradient(180deg, #fff 0%, #ffbe85 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: var(--font-mono);
    color: var(--accent-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* Infinite Ticker Styling */
.ticker-wrap {
    width: 100%;
    background: rgba(255, 107, 0, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ticker-item span {
    color: var(--accent-primary);
    margin: 0 15px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Interactive Dashboard Section */
.dashboard-preview {
    width: 100%;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 0, 0.03);
}

/* Simulated App Content Grid */
.app-content-grid {
    background: #0a0907;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 480px;
}

.prompt-card {
    background: rgba(18, 15, 13, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.prompt-card:hover {
    border-color: var(--border-hover);
    background: rgba(18, 15, 13, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.prompt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.prompt-media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #0a0907;
    border: 1px solid var(--border-color);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.prompt-media video,
.prompt-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.prompt-media + .prompt-media {
    margin-top: 10px;
}

.prompt-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-secondary);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.prompt-copy-count {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.prompt-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.prompt-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Pain & Solution Section */
.pain-solution {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-side h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.pain-side h3 span {
    color: var(--accent-primary);
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-item {
    display: flex;
    gap: 16px;
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 20px;
    border-radius: 12px;
}

.pain-item-icon {
    color: #ef4444;
    flex-shrink: 0;
}

.pain-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #fff;
}

.pain-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Solution Box */
.solution-box {
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.25);
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05), transparent 60%), rgba(18, 15, 13, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.05);
}

.solution-box h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.solution-box p.intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-item {
    display: flex;
    gap: 16px;
}

.solution-icon-wrapper {
    background: rgba(255, 107, 0, 0.15);
    color: var(--accent-secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-text h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.solution-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Anatomy of a Viral Prompt */
.anatomy-section {
    background: var(--bg-secondary);
}

.anatomy-container {
    max-width: 900px;
    margin: 0 auto;
}

.prompt-anatomy-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: rgba(10, 8, 7, 0.9);
}

.prompt-anatomy-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.prompt-anatomy-header h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 6px;
}

.prompt-anatomy-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.anatomy-line {
    margin-bottom: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.anatomy-line.highlight-hook {
    background: rgba(255, 107, 0, 0.05);
    border-left-color: var(--accent-primary);
}

.anatomy-line.highlight-body {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: #3b82f6;
}

.anatomy-line.highlight-cta {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: #10b981;
}

.anatomy-explain {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.explain-col h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.explain-col.hook h4 { color: var(--accent-primary); }
.explain-col.body h4 { color: #3b82f6; }
.explain-col.cta h4 { color: #10b981; }

.explain-col p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Category Grid */
.categories-section {
    background: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    padding: 35px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(255,107,0,0.1) 50%);
    transition: var(--transition-smooth);
}

.category-card:hover::before {
    background: linear-gradient(135deg, transparent 50%, rgba(255,107,0,0.2) 50%);
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.07);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    background: var(--accent-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,107,0,0.3);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid rgba(255, 107, 0, 0.35);
    background: radial-gradient(circle at top, rgba(255, 107, 0, 0.08), transparent 70%), rgba(14, 11, 9, 0.9);
    position: relative;
}

.pricing-box::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-tag {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(255,107,0,0.3);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-new-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

.price-value {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-feature-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.pricing-cta-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-cta-wrapper .btn {
    width: 100%;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.pricing-guarantee svg {
    color: var(--accent-secondary);
}

/* FAQ Accordion Styling */
.faq-section {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(18, 15, 13, 0.4);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon-wrapper {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--border-color);
    color: var(--accent-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--accent-primary);
    background: rgba(18, 15, 13, 0.8);
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
    background: var(--accent-primary);
    color: #fff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Modals & Dialogs (For the blurred prompt copies) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    max-width: 550px;
    width: 90%;
    padding: 40px;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-bounce);
    position: relative;
    border: 1px solid rgba(255,107,0,0.3);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.modal-icon {
    width: 68px;
    height: 68px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px auto;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
}

.modal-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

.prompt-locked-preview {
    background: rgba(0, 0, 0, 0.5);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.prompt-locked-blur {
    filter: blur(5px);
    user-select: none;
    opacity: 0.6;
}

.prompt-locked-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    border: 1px solid var(--accent-primary);
    color: var(--accent-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.modal-cta-btn {
    width: 100%;
}

/* Floating WhatsApp / Contact Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 99;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Footer Styling */
footer {
    background: #060504;
    border-top: 1px solid var(--border-color);
    padding: 60px 24px;
    text-align: center;
    color: var(--text-secondary);
}

.footer-logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent-primary);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-eyebrow {
        font-size: 1.3rem;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        max-width: 500px;
    }
    
    .stat-num {
        font-size: 1.8rem;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-eyebrow {
        font-size: 1.05rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 16px;
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .app-content-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    
    .solution-box {
        padding: 24px;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
    
    .price-value {
        font-size: 4rem;
    }
    
    .prompt-anatomy-card {
        padding: 20px;
    }
    
    .anatomy-explain {
        grid-template-columns: 1fr;
    }
}
