/* Gizmo - Clean Minimal Design System */

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

:root {
    /* Core Colors - Clean, Minimal */
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #181818;
    --black-border: #222222;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --white: #ffffff;
    --white-dim: #e5e5e5;
    
    /* Accent Colors - Vibrant Pops */
    --blue: #0066ff;
    --blue-light: #3388ff;
    --green: #00cc66;
    --green-light: #33dd88;
    --orange: #ff6600;
    --orange-light: #ff8833;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;
    
    /* Transitions */
    --transition-fast: 100ms ease;
    --transition-base: 150ms ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Landing Page Container */
.landing-page {
    position: relative;
    min-height: 100vh;
}

/* Clean Background - No effects */
.bg-gradient,
.bg-grid,
.bg-glow,
.glow-1,
.glow-2,
.glow-3 {
    display: none;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

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

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border: none;
    transition: background var(--transition-base) !important;
}

.nav-cta:hover {
    background: var(--blue-light) !important;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--white);
}

.title-gradient {
    color: var(--blue);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Chat Input */
.chat-container {
    margin-bottom: 20px;
}

.chat-input-wrapper {
    position: relative;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 20px;
    transition: border-color var(--transition-base);
}

.chat-input-wrapper:focus-within {
    border-color: var(--blue);
}

.chat-glow {
    display: none;
}

.chat-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    resize: none;
    outline: none;
    font-family: inherit;
}

.chat-input::placeholder {
    color: var(--gray);
}

.chat-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--black-border);
}

.chat-hints {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
}

.hint-icon {
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--blue);
    color: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--blue-light);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 12px;
    transition: color var(--transition-base);
}

.btn-ghost:hover {
    color: var(--white);
}

/* Quick Prompts */
.quick-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prompt-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.prompt-chip:hover {
    border-color: var(--blue);
    color: var(--white);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

.browser-mockup {
    background: var(--black-light);
    overflow: hidden;
    border: 1px solid var(--black-border);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--black-lighter);
    border-bottom: 1px solid var(--black-border);
}

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

.dot {
    width: 12px;
    height: 12px;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--black);
    padding: 8px 16px;
    margin: 0 40px;
    font-size: 0.8rem;
    color: var(--gray);
}

.url-icon {
    font-size: 0.75rem;
}

.browser-content {
    padding: 20px;
    min-height: 320px;
}

/* Live Preview in Hero */
.live-preview {
    background: var(--white);
    overflow: hidden;
    color: var(--black);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.preview-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.preview-logo {
    font-weight: 700;
    font-size: 0.9rem;
}

.preview-nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--gray);
}

.preview-btn-small {
    background: var(--black);
    color: white;
    padding: 6px 12px;
    font-size: 0.7rem;
}

.preview-hero {
    text-align: center;
    padding: 30px 20px;
}

.preview-hero h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.preview-hero h2 span {
    color: var(--blue);
}

.preview-hero p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.preview-cta-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.preview-btn-primary {
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.preview-btn-secondary {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.preview-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background: #f5f5f5;
}

.preview-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: white;
}

.pf-icon {
    font-size: 1.2rem;
}

.pf-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.visual-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.visual-badge-2 {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Social Proof */
.social-proof {
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.proof-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.proof-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: -0.02em;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Templates Section */
.templates-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.template-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.template-category.reverse {
    direction: rtl;
}

.template-category.reverse > * {
    direction: ltr;
}

.template-preview {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 24px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
}

/* Advertorial Preview */
.template-preview.advertorial .tp-header {
    margin-bottom: 16px;
}

.tp-badge {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.tp-content .tp-image {
    height: 100px;
    background: var(--black-lighter);
    margin-bottom: 14px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-image.vroom {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    border: none;
}

.tp-img-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tp-img-icon {
    font-size: 2.5rem;
}

.tp-img-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

.tp-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tp-content p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.tp-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--gray);
}

/* Lead Magnet Preview */
.tp-leadmag {
    text-align: center;
    padding: 20px;
}

.tp-ebook {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.ebook-icon {
    font-size: 3rem;
    margin-bottom: 4px;
}

.ebook-title {
    font-size: 0.65rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.tp-leadmag h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tp-leadmag p {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.tp-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tp-input {
    background: var(--black-lighter);
    padding: 10px 14px;
    font-size: 0.75rem;
    color: var(--gray);
    border: 1px solid var(--black-border);
}

.tp-button {
    background: var(--blue);
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

/* Webinar Preview */
.tp-webinar {
    text-align: center;
    padding: 16px;
}

.tp-live {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
}

.tp-webinar h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.tp-countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cd-item {
    background: var(--black-lighter);
    padding: 10px 14px;
    text-align: center;
    border: 1px solid var(--black-border);
}

.cd-item span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.cd-item label {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
}

.tp-hosts {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.host {
    font-size: 2rem;
}

/* Insurance Preview */
.tp-insurance {
    text-align: center;
    padding: 16px;
}

.tp-shield {
    font-size: 3rem;
    margin-bottom: 12px;
}

.tp-insurance h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tp-insurance p {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.tp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    color: var(--green);
}

.tp-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.step {
    width: 28px;
    height: 28px;
    background: var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--black-border);
}

.step.active {
    background: var(--blue);
    border-color: var(--blue);
}

/* Template Info */
.template-info {
    padding: 20px 0;
}

.template-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.template-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.template-info p {
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.template-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Analytics Section */
.analytics-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.analytics-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.analytics-dashboard {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 24px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dash-icon {
    font-size: 1.25rem;
}

.dash-period {
    font-size: 0.8rem;
    color: var(--gray);
    background: var(--black-lighter);
    padding: 6px 12px;
    border: 1px solid var(--black-border);
}

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

.dash-stat {
    background: var(--black-lighter);
    padding: 16px;
    border: 1px solid var(--black-border);
}

.ds-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.ds-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ds-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.ds-change.positive {
    color: var(--green);
}

.ds-change.negative {
    color: var(--orange);
}

.dashboard-chart {
    background: var(--black-lighter);
    padding: 20px;
    border: 1px solid var(--black-border);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    margin-bottom: 12px;
}

.chart-bar {
    width: 12%;
    background: var(--blue);
    transition: opacity var(--transition-base);
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--gray);
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analytics-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    transition: border-color var(--transition-base);
}

.analytics-feature:hover {
    border-color: var(--blue);
}

.af-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.af-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.af-content p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* How It Works Preview */
.how-preview-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.builder-preview {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1px;
    background: var(--black-border);
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--black-border);
}

.bp-chat {
    background: var(--black-light);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bp-message {
    padding: 12px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.bp-message.user {
    background: var(--blue);
    align-self: flex-end;
    max-width: 90%;
}

.bp-message.assistant {
    background: var(--black-lighter);
    align-self: flex-start;
    max-width: 90%;
}

.bp-preview {
    background: var(--black);
    padding: 20px;
}

.bp-screen {
    background: #f5f5f5;
    padding: 16px;
    color: var(--black);
    height: 100%;
}

.bp-nav {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.bp-hero-area {
    text-align: center;
    padding: 20px 0;
}

.bp-title {
    height: 24px;
    width: 70%;
    margin: 0 auto 12px;
    background: #e5e5e5;
}

.bp-subtitle {
    height: 14px;
    width: 50%;
    margin: 0 auto 16px;
    background: #e5e5e5;
}

.bp-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bp-buttons span {
    width: 80px;
    height: 32px;
}

.bp-buttons span:first-child {
    background: var(--blue);
}

.bp-buttons span:last-child {
    background: #e5e5e5;
}

.bp-testimonials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.bp-testimonial {
    flex: 1;
    height: 60px;
    background: #eeeeee;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 24px;
}

.cta-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 72px 48px;
    overflow: hidden;
}

.cta-glow {
    display: none;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 28px;
    position: relative;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 14px;
    position: relative;
}

/* Footer */
.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--black-border);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-base);
}

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

.footer-copy {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 44px;
    max-width: 400px;
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-base);
}

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

.modal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.modal-description {
    text-align: center;
    color: var(--gray-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.register-step {
    display: none;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-dim);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: var(--black);
    border: 1px solid var(--black-border);
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--transition-base);
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group input::placeholder {
    color: var(--gray);
}

.modal-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 18px;
}

.success-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 204, 102, 0.1);
    border: 1px solid var(--green);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.success-check {
    width: 22px;
    height: 22px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--white);
}

.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.success-circle {
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* How It Works Page Specific Styles */
.hiw-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hiw-hero-content {
    margin-bottom: 60px;
}

/* Demo Section */
.demo-section {
    padding: 0 24px 80px;
}

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

.demo-builder {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    overflow: hidden;
    min-height: 550px;
}

.demo-chat {
    background: var(--black);
    border-right: 1px solid var(--black-border);
    display: flex;
    flex-direction: column;
}

.demo-chat-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dch-icon {
    font-size: 1.1rem;
}

.demo-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-message {
    display: flex;
    gap: 12px;
    animation: fadeIn 0.3s ease;
}

.dm-avatar {
    width: 32px;
    height: 32px;
    background: var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dm-content {
    background: var(--black-lighter);
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: calc(100% - 44px);
    border: 1px solid var(--black-border);
}

.demo-message.user {
    flex-direction: row-reverse;
}

.demo-message.user .dm-content {
    background: var(--blue);
    border-color: var(--blue);
}

.demo-input-area {
    padding: 16px;
    border-top: 1px solid var(--black-border);
}

.demo-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.demo-suggestion {
    padding: 8px 14px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--gray-light);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.demo-suggestion:hover {
    border-color: var(--blue);
    color: var(--white);
}

.demo-input-row {
    display: flex;
    gap: 10px;
}

.demo-input-row input {
    flex: 1;
    padding: 12px 16px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--white);
    font-size: 0.9rem;
}

.demo-input-row input:focus {
    outline: none;
    border-color: var(--blue);
}

.demo-send {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base);
}

.demo-send:hover {
    background: var(--blue-light);
}

.demo-preview {
    display: flex;
    flex-direction: column;
}

.demo-preview-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dph-tabs {
    display: flex;
    gap: 6px;
}

.dph-tab {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--black-border);
    color: var(--gray);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.dph-tab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.dph-actions {
    display: flex;
    gap: 10px;
}

.dph-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--black-border);
    color: var(--gray-light);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.dph-action:hover {
    border-color: var(--blue);
    color: var(--white);
}

.dph-action.primary {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.dph-action.primary:hover {
    background: var(--green-light);
}

.demo-preview-content {
    flex: 1;
    padding: 20px;
    overflow: auto;
}

.demo-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--gray);
}

.des-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.demo-empty-state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.demo-empty-state p {
    font-size: 0.9rem;
}

.demo-code-content {
    flex: 1;
    padding: 20px;
    overflow: auto;
    background: var(--black);
}

.demo-code-content pre {
    margin: 0;
}

.demo-code-content code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.8rem;
    color: var(--gray-light);
    white-space: pre-wrap;
}

/* Demo Live Preview Styles */
.demo-live-preview {
    background: var(--white);
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

.dlp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.dlp-nav.dark {
    background: var(--black);
    color: white;
    border-bottom: none;
}

.dlp-logo {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
}

.dlp-nav.dark .dlp-logo {
    color: white;
}

.dlp-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}

.dlp-btn-nav {
    background: var(--black);
    color: white;
    padding: 8px 14px;
    font-size: 0.75rem;
}

.dlp-hero {
    text-align: center;
    padding: 40px 24px;
    color: var(--black);
}

.dlp-hero.dark {
    background: var(--black-light);
    color: white;
}

.dlp-hero h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.dlp-hero h1 .gradient {
    color: var(--blue);
}

.dlp-hero p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.dlp-hero.dark p {
    color: var(--gray-light);
}

.dlp-cta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dlp-btn-primary {
    background: var(--blue);
    color: white;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

.dlp-btn-primary.large {
    padding: 14px 28px;
    font-size: 0.9rem;
}

.dlp-btn-secondary {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.dlp-social-proof {
    font-size: 0.75rem;
    color: var(--gray);
}

.dlp-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 24px;
    background: #f5f5f5;
}

.dlp-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
}

.dlp-f-icon {
    font-size: 1.4rem;
}

.dlp-f-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-dark);
}

/* Webinar Preview */
.dlp-webinar {
    text-align: center;
    padding: 30px 24px;
    background: var(--orange);
    color: white;
}

.dlp-webinar-badge {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.dlp-webinar h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dlp-webinar p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.dlp-countdown {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.dlp-cd-item {
    background: rgba(255,255,255,0.15);
    padding: 12px 16px;
    text-align: center;
}

.dlp-cd-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.dlp-cd-item label {
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.dlp-hosts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dlp-host {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.dlp-host-img {
    font-size: 2.5rem;
}

.dlp-host span {
    font-size: 0.75rem;
}

.dlp-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto 14px;
}

.dlp-form input {
    padding: 12px 16px;
    border: none;
    font-size: 0.85rem;
}

.dlp-urgency {
    font-size: 0.8rem;
    color: #fff3cd;
    font-weight: 600;
}

/* Lead Magnet Preview */
.dlp-leadmag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--black);
}

.dlp-leadmag-content {
    padding: 30px 24px;
}

.dlp-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--blue);
    background: #e0f0ff;
    padding: 6px 12px;
    margin-bottom: 16px;
}

.dlp-leadmag h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.dlp-leadmag-content > p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.dlp-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.dlp-benefits li {
    font-size: 0.8rem;
    color: var(--gray-dark);
    padding: 6px 0;
}

.dlp-form-simple {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dlp-form-simple input {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    font-size: 0.85rem;
}

.dlp-privacy {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 10px;
}

.dlp-leadmag-visual {
    background: #e0f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlp-ebook {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dlp-ebook-icon {
    font-size: 5rem;
}

.dlp-ebook-pages {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--blue);
}

/* Fitness Preview */
.dlp-fitness {
    color: white;
}

.dlp-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    background: var(--black-lighter);
}

.dlp-stat {
    text-align: center;
}

.ds-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.ds-label {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.dlp-testimonial {
    padding: 20px;
    background: var(--black);
    text-align: center;
}

.dlp-testimonial p {
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.dlp-testimonial span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Generic Preview */
.dlp-generic .dlp-nav {
    background: white;
}

.dlp-saas .dlp-nav {
    background: white;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* Process Section - How It Works Page */
.process-section-detailed {
    padding: var(--section-padding) 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.process-steps-detailed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.psd-step {
    display: grid;
    grid-template-columns: auto 100px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 800px;
    width: 100%;
}

.psd-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--black-lighter);
    line-height: 1;
}

.psd-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.psd-icon-large {
    font-size: 3.5rem;
}

.psd-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.psd-content p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.psd-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.psd-examples span {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    padding-left: 16px;
    border-left: 2px solid var(--blue);
}

.psd-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.psd-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.psd-feature .check {
    color: var(--green);
    font-weight: 600;
}

.psd-actions {
    display: flex;
    gap: 20px;
}

.psd-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    font-size: 0.85rem;
    color: var(--gray-light);
}

.pai-icon {
    font-size: 1.1rem;
}

.psd-connector {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.psd-connector svg path {
    stroke: var(--blue);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .template-category {
        grid-template-columns: 1fr;
    }
    
    .template-category.reverse {
        direction: ltr;
    }
    
    .analytics-showcase {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-builder {
        grid-template-columns: 1fr;
    }
    
    .builder-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dlp-leadmag {
        grid-template-columns: 1fr;
    }
    
    .dlp-leadmag-visual {
        display: none;
    }
}
