/* Global Styles & Variables */
:root {
    --bg-main: #0a0e17;
    --bg-gradient-start: #060911;
    --bg-gradient-end: #101622;
    --panel-bg: rgba(17, 24, 39, 0.65);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --accent-primary: #6366f1; /* Electric Indigo */
    --accent-primary-hover: #4f46e5;
    --accent-success: #10b981; /* Emerald Green */
    --accent-success-hover: #059669;
    --accent-glow: rgba(99, 102, 241, 0.35);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-main: 0 10px 40px rgba(0, 0, 0, 0.4);
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-main);
    background-image: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Decorative Morphing Glowing Orbs */
.background-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background-color: var(--accent-primary);
    top: -150px;
    right: -100px;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background-color: var(--accent-success);
    bottom: -100px;
    left: -150px;
    animation-duration: 18s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background-color: #ec4899; /* Hot Pink */
    top: 40%;
    left: 45%;
    opacity: 0.08;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 50% 50%;
    }
    33% {
        transform: translate(50px, -80px) scale(1.1) rotate(120deg);
        border-radius: 40% 60% 50% 50% / 40% 50% 50% 60%;
    }
    66% {
        transform: translate(-40px, 60px) scale(0.9) rotate(240deg);
        border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
    }
}

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

/* Header & Navigation */
header {
    border-bottom: 1px solid var(--panel-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(10, 14, 23, 0.75);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--accent-success);
    font-size: 1.7rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-text-auth {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color 0.2s ease;
}

.btn-text-auth:hover {
    color: var(--text-main);
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    padding: 6px 14px;
    cursor: pointer;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.user-menu-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-success));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-trigger .fa-chevron-down {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.user-menu.open .user-menu-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 60;
}

.user-menu.open .user-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 8px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--panel-border);
    margin-bottom: 4px;
    word-break: break-all;
}

.user-dropdown button {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}

.user-dropdown button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 0.04em;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* Demo CTA Link */
.demo-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: gap 0.2s ease;
}

.demo-page-card:hover .demo-cta-link {
    gap: 10px;
}

/* Showcase Preview */
.showcase-preview-container {
    margin-top: 28px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.showcase-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--panel-border);
    background: rgba(255, 255, 255, 0.02);
}

.showcase-preview-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.showcase-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.showcase-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.showcase-preview-frame {
    margin: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
}

.showcase-preview-viewport {
    background: white;
    color: #1f2937;
    min-height: 420px;
    max-height: 600px;
    overflow-y: auto;
    font-family: 'Outfit', sans-serif;
}

.showcase-preview-viewport .preview-header {
    background-color: #1f2937;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-preview-viewport .preview-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.showcase-preview-viewport .preview-hero h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.showcase-preview-viewport .preview-hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-preview-viewport .preview-content-grid {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

.showcase-preview-viewport .preview-content h4 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #111827;
    font-weight: 700;
}

.showcase-preview-viewport .preview-content p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4b5563;
    font-size: 0.95rem;
}

.showcase-preview-viewport .preview-sidebar-card {
    background-color: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.showcase-preview-viewport .preview-sidebar-card h4 {
    margin-bottom: 10px;
    color: #111827;
}

.showcase-preview-viewport .preview-sidebar-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.showcase-preview-viewport .preview-sidebar-card a {
    display: block;
    text-align: center;
    background-color: #6366f1;
    color: white;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.showcase-preview-viewport .preview-faq {
    padding: 30px;
    background: #f8fafc;
}

.showcase-preview-viewport .preview-faq h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #111827;
}

.showcase-preview-viewport .faq-item {
    margin-bottom: 16px;
}

.showcase-preview-viewport .faq-item h5 {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 6px;
}

.showcase-preview-viewport .faq-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.showcase-preview-viewport .preview-footer {
    background-color: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 24px;
    font-size: 0.85rem;
}

.showcase-preview-viewport .preview-footer a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

/* Email Capture Section */
.email-capture-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 30px;
    margin-bottom: 34px;
}

.email-capture-content {
    flex: 1;
}

.email-capture-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.15;
    margin: 8px 0 8px;
}

.email-capture-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.email-capture-form {
    flex-shrink: 0;
}

.email-capture-input-group {
    display: flex;
    gap: 10px;
}

.email-capture-input-group input {
    width: 260px;
    background-color: rgba(9, 12, 20, 0.6);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    color: var(--text-main);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.email-capture-input-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

.email-capture-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: right;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 34px;
}

.comparison-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-before {
    border-color: rgba(239, 68, 68, 0.2);
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.06), rgba(255, 255, 255, 0.03));
}

.comparison-after {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.06), rgba(99, 102, 241, 0.04));
}

.comparison-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
}

.comparison-label-before {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-label-after {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-list {
    list-style: none;
    display: grid;
    gap: 14px;
    flex: 1;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.4;
}

.comparison-before .comparison-list li i {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.comparison-after .comparison-list li i {
    color: var(--accent-success);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.comparison-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-metric-highlight {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.06));
    border-color: rgba(16, 185, 129, 0.2);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.comparison-metric-highlight .metric-number {
    color: var(--accent-success);
}

.metric-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
}

.divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent, var(--panel-border), transparent);
    min-height: 40px;
}

.divider-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* Visual Proof Section */
.proof-visual-section {
    margin-bottom: 34px;
}

.proof-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.proof-visual-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proof-visual-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-success);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-browser-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    flex: 1;
}

.proof-viewport {
    background: white;
    min-height: 200px;
}

.proof-visual-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.proof-file-list {
    display: grid;
    gap: 8px;
    flex: 1;
}

.proof-file {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-main);
}

.proof-file i {
    color: var(--accent-primary);
}

.proof-file span:first-of-type {
    flex: 1;
    font-weight: 600;
}

.proof-file-size {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.proof-scale-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 10px 0;
}

.proof-scale-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
}

.proof-scale-final {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(99, 102, 241, 0.08));
    border-color: rgba(16, 185, 129, 0.2);
}

.proof-scale-count {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-primary);
    min-width: 24px;
    text-align: center;
}

.proof-scale-final .proof-scale-count {
    color: var(--accent-success);
}

.proof-scale-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.proof-scale-arrow {
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 34px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.55;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--panel-border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-success));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-info strong {
    color: var(--text-main);
    font-size: 0.9rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 70px 0 50px 0;
}

.hero-kicker,
.section-kicker,
.proof-label,
.demo-kicker {
    color: var(--accent-success);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 14px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(90deg, #6366f1, #d946ef, #10b981);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions .btn {
    min-width: 220px;
}

.proof-link {
    text-decoration: none;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 920px;
    margin: 28px auto 0;
}

.trust-strip div {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 700;
}

.trust-strip i {
    color: var(--accent-success);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 34px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 22px;
    min-height: 170px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.proof-card-strong {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.18), rgba(16, 185, 129, 0.1));
    border-color: rgba(99, 102, 241, 0.28);
}

.proof-card h3 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.28rem;
    line-height: 1.18;
    margin: 10px 0 10px;
}

.proof-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
}

.demo-pages-section {
    margin-bottom: 34px;
}

.demo-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.demo-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.demo-page-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 20px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.demo-tag {
    align-self: flex-start;
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 999px;
    color: var(--accent-success);
    background: rgba(16, 185, 129, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 10px;
    text-transform: uppercase;
}

.demo-page-card h3 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.16;
    margin: 14px 0 10px;
}

.demo-page-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.demo-page-card ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}

.demo-page-card li {
    color: var(--text-main);
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.35;
}

.demo-page-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-success);
    flex: 0 0 auto;
    margin-top: 6px;
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 35px;
    margin-bottom: 80px;
}

/* Glassmorphic Panel & Magnetic Hover Cards */
.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06), transparent);
    pointer-events: none;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.panel-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--panel-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
}

.panel-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-badge {
    background-color: var(--accent-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    position: relative;
}

/* Wizard Steps & Inputs */
.wizard-steps {
    padding: 30px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: slideIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    background-color: rgba(9, 12, 20, 0.6);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    color: var(--text-main);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
    background-color: rgba(9, 12, 20, 0.85);
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Page Style Selector */
.style-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.style-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    padding: 12px 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.style-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.style-card.active {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.08));
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.15);
}

.style-card i {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.style-card.active i {
    color: var(--accent-primary);
}

.style-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-main);
}

.style-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #4f46e5);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.45);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-success), #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.13);
}

.btn-next {
    width: 100%;
    margin-top: 10px;
}

.button-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.button-row .btn {
    flex: 1;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: underline;
    font-family: var(--font-body);
}

.btn-text:hover {
    color: var(--text-main);
}

/* Pulsing Button Animation */
.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.glow-button:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

/* Real-Time Live Preview Browser */
.preview-panel {
    display: flex;
    flex-direction: column;
}

.preview-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: 60%;
    padding-bottom: 2px;
}

.preview-tabs::-webkit-scrollbar {
    height: 4px;
}

.preview-tabs::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.tab {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.tab.active {
    background-color: rgba(99, 102, 241, 0.15);
    color: var(--accent-primary);
    border-color: rgba(99, 102, 241, 0.3);
}

.preview-browser {
    flex: 1;
    margin: 24px;
    background-color: #141924;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 490px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.55);
}

.browser-bar {
    height: 44px;
    background-color: #0c0f17;
    display: flex;
    align-items: center;
    padding: 0 18px;
    gap: 20px;
    border-bottom: 1px solid var(--panel-border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.browser-url {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    flex: 1;
    height: 26px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-viewport {
    flex: 1;
    background-color: white;
    color: #1f2937;
    position: relative;
    overflow-y: auto;
}

/* Placeholder for Browser */
.preview-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: var(--text-muted);
}

.placeholder-icon {
    font-size: 4.5rem;
    color: var(--accent-primary);
    opacity: 0.25;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.preview-placeholder p {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
}

.mobile-preview-demo {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border: 1px solid #dbe3f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.mobile-preview-demo strong {
    color: #111827;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.1;
}

.mobile-preview-demo small {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Upgrade Banner */
.upgrade-banner {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.08));
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.upgrade-banner i {
    color: var(--accent-primary);
}

.upgrade-banner a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
}

.upgrade-banner a:hover {
    text-decoration: underline;
}

/* Live Preview Typing Indicator */
.preview-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-success);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-live-indicator.active {
    opacity: 1;
}

.preview-live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-success);
    border-radius: 50%;
    animation: livePulse 1.5s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Rendered Suburb Page Template Styles (Injects inside browser viewport) */
.suburb-page-preview {
    font-family: var(--font-body);
    color: #374151;
}

.preview-header {
    background-color: #1f2937;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.preview-hero h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.preview-hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.preview-details {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

.preview-description h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 700;
}

.preview-description p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.preview-sidebar {
    background-color: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.preview-sidebar h4 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: #111827;
}

/* Modals & Overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.modal-card {
    width: 480px;
    padding: 40px;
    text-align: center;
    border-color: rgba(99, 102, 241, 0.25);
    transform: scale(0.92);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--text-main);
}

.modal-header {
    margin-bottom: 25px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-gavel {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.45));
}

/* Auth Cards Specific Style */
.auth-header-section {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-success));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 14px;
}

.auth-header-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-social-buttons {
    margin-bottom: 20px;
}

.btn-google-auth {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-google-auth:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--panel-border);
}

.auth-divider span {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--panel-border);
    margin-bottom: 30px;
    gap: 10px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 0;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.auth-tab.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.auth-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 18px;
}

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

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

/* Pricing inside Modal */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
}

/* Upgrade Modal */
.upgrade-modal {
    width: 640px;
    max-width: 95vw;
    padding: 0;
    text-align: left;
}

.upgrade-modal-header {
    text-align: center;
    padding: 32px 32px 0;
}

.upgrade-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 12px 0 6px;
}

.upgrade-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.upgrade-comparison {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
    padding: 24px 24px 0;
}

.upgrade-tier {
    border-radius: 14px;
    padding: 22px;
    border: 1px solid var(--panel-border);
}

.upgrade-tier-free {
    background: rgba(255, 255, 255, 0.02);
    opacity: 0.7;
}

.upgrade-tier-paid {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), rgba(99, 102, 241, 0.06));
    border-color: rgba(16, 185, 129, 0.25);
    position: relative;
}

.tier-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.tier-label-highlight {
    color: var(--accent-success);
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.tier-price .currency {
    font-size: 1rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 1px;
}

.tier-period {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.tier-features li {
    font-size: 0.85rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.tier-features li i {
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.upgrade-tier-free .tier-features li i {
    color: var(--text-muted);
}

.upgrade-tier-paid .tier-features li i {
    color: var(--accent-success);
}

.tier-limitation {
    color: var(--text-muted) !important;
}

.tier-limitation i {
    color: rgba(239, 68, 68, 0.6) !important;
}

.upgrade-cta {
    margin-top: 18px;
    width: 100%;
}

.upgrade-guarantee {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 14px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.upgrade-guarantee i {
    color: var(--accent-success);
}

/* Lemon Squeezy overlay z-index fix */
.lemonsqueezy-overlay,
.lemonode-overlay,
[data-lemonode],
.lemon-modal,
.lemonsqueezy-checkout,
#lemonsqueezy-overlay,
.lemonsqueezy__overlay,
div[class*="lemonsqueezy"],
div[class*="lemon"] {
    z-index: 200 !important;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-success);
    text-transform: uppercase;
}

.price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    margin: 15px 0;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
}

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

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

.pricing-features li {
    font-size: 0.92rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--accent-success);
}

/* Loader Screen Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.loader-card {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(99, 102, 241, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin: 0 auto 24px auto;
}

.progress-bar-container {
    width: 300px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 20px auto 0 auto;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-success));
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Toast Success Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0e121b;
    border: 1px solid var(--accent-success);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
    color: var(--accent-success);
}

.toast-body h4 {
    font-size: 1rem;
    font-weight: 700;
}

.toast-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mobile-sticky-cta {
    display: none;
}

.conversion-section,
.founder-section,
.deal-section,
.launch-hook,
.faq-section {
    margin-bottom: 34px;
}

.conversion-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: center;
}

.section-copy h2,
.deal-section h2,
.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.12;
    margin: 10px 0 12px;
}

.section-copy p,
.deal-section p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 680px;
}

.use-case-list {
    display: grid;
    gap: 12px;
}

.use-case-list div {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    color: var(--text-main);
    font-weight: 700;
}

.use-case-list i {
    color: var(--accent-success);
    font-size: 1.1rem;
}

.deal-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 30px;
}

.deal-section .btn {
    flex-shrink: 0;
}

.founder-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: center;
    padding: 30px;
}

.founder-copy h2,
.launch-hook h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.12;
    margin: 10px 0 12px;
}

.founder-copy p,
.launch-hook p {
    color: var(--text-muted);
    margin-bottom: 12px;
    max-width: 760px;
}

.founder-proof {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.16), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.24);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    gap: 10px;
}

.founder-proof strong {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.18;
}

.founder-proof span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.founder-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-success);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.launch-hook {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.launch-hook .btn {
    flex-shrink: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.faq-grid article {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 20px;
}

.faq-grid h3 {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 9px;
}

.faq-grid p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =============================================
   PHASE 7: Agency Economics Section
   ============================================= */
.economics-section {
    margin-bottom: 34px;
}

.economics-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 20px;
}

.economics-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.economics-card-before {
    border-color: rgba(239, 68, 68, 0.2);
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.06), rgba(255, 255, 255, 0.03));
}

.economics-card-after {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.06), rgba(99, 102, 241, 0.04));
}

.economics-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.economics-label-after {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.economics-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
}

.economics-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    font-weight: 700;
    font-size: 0.9rem;
}

.economics-step .step-icon {
    color: var(--accent-primary);
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.economics-card-after .economics-step .step-icon {
    color: var(--accent-success);
}

.economics-arrow {
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.5;
}

.economics-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.economics-metric-highlight {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.06));
    border-color: rgba(16, 185, 129, 0.2);
}

.metric-time {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.economics-metric-highlight .metric-time {
    color: var(--accent-success);
}

.economics-cost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.economics-cost-highlight {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.15), rgba(99, 102, 241, 0.08));
    border-color: rgba(16, 185, 129, 0.25);
}

.cost-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cost-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.economics-cost-highlight .cost-amount {
    color: var(--accent-success);
}

.economics-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.economics-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.economics-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* =============================================
   PHASE 3: Enhanced Showcase Section
   ============================================= */
.showcase-section {
    margin-bottom: 34px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.showcase-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.showcase-tag {
    align-self: flex-start;
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 999px;
    color: var(--accent-success);
    background: rgba(16, 185, 129, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.showcase-meta {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
}

.showcase-meta-title,
.showcase-meta-h1 {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 600;
    font-family: monospace;
    line-height: 1.3;
}

.showcase-meta-h1 {
    color: var(--accent-primary);
    border-color: rgba(99, 102, 241, 0.15);
}

.showcase-intro {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

.showcase-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.showcase-details span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.showcase-details span i {
    color: var(--accent-success);
    font-size: 0.65rem;
}

.showcase-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: gap 0.2s ease;
    margin-top: auto;
}

.showcase-card:hover .showcase-cta-link {
    gap: 10px;
}

/* =============================================
   PHASE 4: Variation Lab Section
   ============================================= */
.variation-section {
    margin-bottom: 34px;
}

.variation-demo {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 28px;
}

.variation-input {
    margin-bottom: 24px;
}

.variation-input-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-success);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    display: block;
}

.variation-input-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.variation-input-card div {
    font-size: 0.9rem;
    color: var(--text-main);
}

.variation-input-card strong {
    color: var(--text-muted);
    font-weight: 600;
}

.variation-outputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.variation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    overflow: hidden;
}

.variation-card-header {
    border-left: 4px solid var(--accent-primary);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--panel-border);
}

.variation-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.variation-style {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.variation-content {
    padding: 14px 16px;
    display: grid;
    gap: 10px;
}

.variation-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.field-name {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.field-value {
    font-size: 0.82rem;
    color: var(--text-main);
    line-height: 1.3;
}

/* =============================================
   PHASE 6: Boundaries / Credibility Section
   ============================================= */
.boundaries-section {
    margin-bottom: 34px;
}

.boundaries-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.boundaries-does-not,
.boundaries-does {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 28px;
}

.boundaries-does-not {
    border-color: rgba(239, 68, 68, 0.15);
}

.boundaries-does {
    border-color: rgba(16, 185, 129, 0.15);
}

.boundaries-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.boundaries-header i {
    font-size: 1.5rem;
}

.boundaries-does-not .boundaries-header i {
    color: #ef4444;
}

.boundaries-does .boundaries-header i {
    color: var(--accent-success);
}

.boundaries-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.2;
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: var(--accent-success);
}

.boundaries-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.boundaries-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 600;
}

.boundaries-list-not li i {
    color: #ef4444;
    font-size: 0.85rem;
}

.boundaries-list-does li i {
    color: var(--accent-success);
    font-size: 0.85rem;
}

.boundaries-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--panel-border), transparent);
    margin: 0 20px;
}

/* =============================================
   PHASE 5: Commercial Rights Section
   ============================================= */
.rights-section {
    padding: 32px 34px;
    margin-bottom: 34px;
}

.rights-content {
    margin-bottom: 20px;
}

.rights-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.12;
    margin: 10px 0 8px;
}

.rights-content p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 680px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.rights-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-main);
}

.rights-item i {
    color: var(--accent-success);
    font-size: 1rem;
    flex-shrink: 0;
}

/* =============================================
   PHASE 8: Refactored Pricing Section
   ============================================= */
.pricing-section {
    padding: 32px 34px;
    margin-bottom: 34px;
}

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

.pricing-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.12;
    margin: 12px 0 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-card-highlight {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.06), rgba(99, 102, 241, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 32px;
}

.pricing-card-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-success);
    margin-bottom: 4px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-features-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 600;
}

.pricing-features-list li i {
    color: var(--accent-success);
    font-size: 0.85rem;
}

.pricing-card-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-value-prop {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 18px;
}

.pricing-value-prop strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.pricing-value-prop p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.pricing-compare {
    display: grid;
    gap: 8px;
}

.pricing-compare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
}

.compare-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.compare-value {
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 700;
}

.compare-value-highlight {
    color: var(--accent-success);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.pricing-compare-divider {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.06);
}

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

.pricing-guarantee i {
    color: var(--accent-success);
}

/* =============================================
   PHASE 12: Activity Signals Section
   ============================================= */
.activity-section {
    margin-bottom: 34px;
}

.activity-feed {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 4px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-success);
    flex-shrink: 0;
    animation: livePulse 2s infinite ease-in-out;
}

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

.activity-action {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.activity-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* =============================================
   PHASE 10: Dashboard Metrics Chips
   ============================================= */
.dashboard-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.metric-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.metric-chip i {
    color: var(--accent-success);
    font-size: 0.65rem;
}

.metric-chip span {
    color: var(--text-main);
}

/* Keyframes Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.04); }
    100% { opacity: 0.2; transform: scale(1); }
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.8rem;
    }

    .proof-grid,
    .demo-page-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-divider {
        flex-direction: row;
        padding: 0;
    }

    .divider-line {
        width: auto;
        height: 2px;
        flex: 1;
        min-height: 0;
    }

    .proof-visual-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .conversion-section,
    .founder-section,
    .launch-hook,
    .deal-section {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .deal-section,
    .launch-hook {
        flex-direction: column;
    }

    .email-capture-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-capture-input-group {
        flex-direction: column;
        width: 100%;
    }

    .email-capture-input-group input {
        width: 100%;
    }

    .email-capture-hint {
        text-align: left;
    }
}

@media (max-width: 860px) {
    .container {
        padding: 0 18px;
    }

    .nav-container {
        height: 68px;
        gap: 12px;
    }

    .logo {
        font-size: 1.28rem;
        gap: 9px;
        letter-spacing: 0;
    }

    .logo-icon {
        font-size: 1.35rem;
    }

    .nav-links {
        display: none;
    }

    .auth-buttons {
        gap: 10px;
    }

    .btn-text-auth {
        display: none;
    }

    .nav-cta {
        min-height: 44px;
        padding: 10px 14px;
    }

    .hero {
        padding: 42px 0 26px 0;
        text-align: left;
    }

    .hero-kicker {
        font-size: 0.7rem;
        line-height: 1.45;
    }

    .hero h1 {
        font-size: 2.35rem;
        line-height: 1.08;
        letter-spacing: 0;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.02rem;
        line-height: 1.65;
        margin: 0;
        max-width: 620px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .hero-actions .btn {
        min-width: 0;
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 18px;
    }

    .trust-strip div {
        justify-content: flex-start;
        min-height: 44px;
        font-size: 0.8rem;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 22px;
    }

    .proof-card {
        min-height: 0;
        padding: 18px;
    }

    .proof-card h3 {
        font-size: 1.13rem;
    }

    .dashboard-grid {
        gap: 20px;
        margin-bottom: 110px;
    }

    .glass-panel {
        border-radius: 18px;
    }

    .hover-card:hover {
        transform: none;
    }

    .panel-header {
        padding: 18px 20px;
        align-items: flex-start;
        gap: 14px;
        flex-direction: column;
    }

    .panel-header h2 {
        font-size: 1.18rem;
        line-height: 1.2;
    }

    .preview-panel .panel-header {
        flex-direction: column;
    }

    .preview-tabs {
        width: 100%;
        max-width: 100%;
    }

    .wizard-steps {
        padding: 22px 20px 24px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    label {
        font-size: 0.84rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea {
        min-height: 50px;
        padding: 15px 16px;
        font-size: 1rem;
        border-radius: 11px;
    }

    textarea {
        min-height: 112px;
    }

    .input-hint {
        font-size: 0.78rem;
        line-height: 1.5;
    }

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

    .style-card {
        padding: 10px 8px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding: 14px 18px;
    }

    .button-row {
        flex-direction: column-reverse;
        gap: 12px;
        margin-top: 18px;
    }

    .preview-browser {
        margin: 16px;
        min-height: 420px;
        border-radius: 14px;
    }

    .browser-bar {
        height: 40px;
        gap: 12px;
        padding: 0 12px;
    }

    .browser-url {
        font-size: 0.72rem;
        padding: 0 10px;
    }

    .preview-placeholder {
        width: auto;
        inset: 22px;
        transform: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        color: #64748b;
    }

    .placeholder-icon {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }

    .preview-placeholder p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .mobile-preview-demo strong {
        font-size: 1.2rem;
    }

    .mobile-preview-demo small {
        font-size: 0.82rem;
    }

    .preview-header {
        padding: 13px 16px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .preview-hero {
        padding: 42px 18px;
    }

    .preview-hero h3 {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .preview-hero p {
        font-size: 0.98rem;
    }

    .preview-details {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px 18px;
    }

    .preview-description h4 {
        font-size: 1.28rem;
    }

    .preview-description p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .preview-sidebar {
        padding: 18px;
    }

    .modal-overlay {
        align-items: flex-end;
        padding: 16px;
    }

    .modal-card {
        width: 100%;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        padding: 30px 22px 24px;
        border-radius: 20px;
    }

    .modal-header h3 {
        font-size: 1.45rem;
    }

    .modal-gavel {
        font-size: 2.35rem;
    }

    .pricing-card {
        padding: 22px 18px;
    }

    .upgrade-modal {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .upgrade-comparison {
        grid-template-columns: 1fr;
        padding: 16px 16px 0;
    }

    .upgrade-modal-header {
        padding: 24px 20px 0;
    }

    .upgrade-modal-header h3 {
        font-size: 1.35rem;
    }

    .upgrade-tier {
        padding: 18px;
    }

    .tier-price {
        font-size: 1.8rem;
    }

    .price {
        font-size: 2.55rem;
    }

    .toast {
        right: 16px;
        left: 16px;
        bottom: 92px;
        padding: 14px 16px;
    }

    .loader-card {
        padding: 0 24px;
    }

    .progress-bar-container {
        width: min(300px, calc(100vw - 48px));
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 140;
        min-height: 54px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        background: linear-gradient(135deg, var(--accent-success), #0d9488);
        color: white;
        box-shadow: 0 14px 34px rgba(16, 185, 129, 0.34), 0 10px 28px rgba(0, 0, 0, 0.45);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 800;
    }

    .economics-grid,
    .boundaries-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .economics-vs {
        flex-direction: row;
        padding: 8px 0;
    }
    .economics-summary,
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-grid,
    .variation-outputs {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card-highlight {
        grid-template-columns: 1fr;
    }
    .boundaries-divider {
        width: auto;
        height: 2px;
        margin: 0;
        background: linear-gradient(90deg, transparent, var(--panel-border), transparent);
    }
    .variation-input-card {
        flex-direction: column;
        gap: 10px;
    }

    .economics-section,
    .showcase-section,
    .variation-section,
    .boundaries-section,
    .rights-section,
    .pricing-section,
    .activity-section,
    .comparison-section,
    .demo-pages-section,
    .conversion-section,
    .founder-section,
    .deal-section,
    .launch-hook,
    .faq-section {
        margin-bottom: 26px;
    }

    .section-copy h2,
    .founder-copy h2,
    .deal-section h2,
    .launch-hook h2,
    .faq-section h2 {
        font-size: 1.55rem;
    }

    .conversion-section {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .use-case-list div {
        align-items: flex-start;
        padding: 14px 15px;
        font-size: 0.92rem;
    }

    .deal-section {
        padding: 24px 20px;
    }

    .founder-section,
    .launch-hook {
        padding: 24px 20px;
    }

    .founder-proof {
        padding: 20px;
    }

    .variation-outputs,
    .rights-grid,
    .economics-summary {
        grid-template-columns: 1fr;
    }
    .economics-stat {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
    }
    .founder-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .founder-stat {
        padding: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .comparison-card {
        padding: 20px;
    }

    .comparison-list li {
        font-size: 0.86rem;
    }

    .metric-number {
        font-size: 1.3rem;
    }

    .demo-page-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .demo-page-card {
        min-height: 0;
        padding: 18px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 520px) {
    body {
        padding-bottom: 86px;
    }

    .container {
        padding: 0 14px;
    }

    .nav-container {
        height: 62px;
    }

    .logo {
        font-size: 1.12rem;
    }

    .nav-cta {
        font-size: 0.82rem;
        padding: 9px 12px;
    }

    .hero {
        padding: 32px 0 22px 0;
    }

    .hero h1 {
        font-size: 2.02rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.96rem;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .panel-header {
        padding: 16px;
    }

    .panel-header h2 {
        font-size: 1.05rem;
    }

    .step-badge {
        width: 28px;
        height: 28px;
        font-size: 0.86rem;
    }

    .wizard-steps {
        padding: 18px 16px 20px;
    }

    .preview-browser {
        margin: 12px;
        min-height: 360px;
    }

    .browser-dots {
        display: none;
    }

    .preview-hero {
        padding: 34px 16px;
    }

    .preview-hero h3 {
        font-size: 1.55rem;
    }

    .preview-details {
        padding: 22px 16px;
    }

    .pricing-features li {
        align-items: flex-start;
        line-height: 1.45;
    }
}
