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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    padding: 16px 0;
    transition: transform 0.3s ease-in-out;
}

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

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

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.letter-normal {
    color: #1a1a1a;
}

.letter-black {
    color: #000000;
}

.letter-rotated {
    display: inline-block;
    transform: rotate(180deg);
}

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

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

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.hero-badge span {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.hero-title {
    font-size: clamp(56px, 10vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    color: #0f0f0f;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 48px;
    color: #374151;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.hero-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    font-size: 16px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-note {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.btn-outline:hover {
    background: #f8f8f8;
}



/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0 40px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.secondary-cta {
    text-align: center;
    margin-top: 40px;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.social-proof-content {
    text-align: center;
}

.subscriber-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.count-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.count-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.email-preview {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.email-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.email-from {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sender-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 4px;
}

.avatar-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.sender-name {
    font-weight: 600;
    color: #1a1a1a;
}

.sender-email {
    font-size: 14px;
    color: #666;
}

.email-subject h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.email-date {
    font-size: 14px;
    color: #666;
}

.email-content {
    padding: 24px;
}

.greeting p {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.metrics-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.metrics-grid {
    display: grid;
    gap: 16px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.metric-label {
    font-weight: 500;
    color: #666;
}

.metric-value {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

.metric-value.success {
    color: #22c55e;
}

.metric-change {
    font-size: 14px;
    font-weight: 500;
}

.metric-change.positive {
    color: #22c55e;
}

.insights-section,
.recommendations-section,
.next-week-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.insights-section h4,
.recommendations-section h4,
.next-week-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.insights-section p {
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.6;
    font-size: 14px;
}

.recommendation-item {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

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

.next-week-section p {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.data-sources {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.data-sources small {
    color: #9ca3af;
    font-size: 12px;
}

/* Enhanced Visual Styles for Sample Report */

/* Section Titles */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-icon {
    font-size: 20px;
}

.section-title h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Enhanced Metrics Cards */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.metric-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.metric-card.revenue::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.metric-card.orders::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.metric-card.aov::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.metric-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-card .metric-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-card .metric-value {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.metric-card .metric-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}

.metric-card .metric-change.positive {
    color: #059669;
}

.change-arrow {
    font-size: 16px;
    font-weight: bold;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.insight-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.insight-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.insight-card.traffic {
    border-left-color: #3b82f6;
}

.insight-card.conversion {
    border-left-color: #8b5cf6;
}

.insight-card.ltv {
    border-left-color: #10b981;
}

.insight-card.product {
    border-left-color: #f59e0b;
}

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

.insight-icon {
    font-size: 18px;
}

.insight-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.insight-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Highlight Elements */
.highlight-number {
    font-weight: 700;
    color: #1f2937;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-positive {
    font-weight: 600;
    color: #059669;
    background: #d1fae5;
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-warning {
    font-weight: 600;
    color: #d97706;
    background: #fef3c7;
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-urgent {
    font-weight: 600;
    color: #dc2626;
    background: #fee2e2;
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-neutral {
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-keyword {
    font-weight: 600;
    color: #7c3aed;
    background: #ede9fe;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Recommendations Grid */
.recommendations-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.recommendation-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.recommendation-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.priority-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.high-priority .priority-badge {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.medium-priority .priority-badge {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

.low-priority .priority-badge {
    background: #dbeafe;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    margin-right: 100px;
}

.rec-icon {
    font-size: 18px;
}

.rec-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.recommendation-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.success-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.waitlist-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
}

.waitlist-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.waitlist-form {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input {
    flex: 1;
    min-width: 300px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    position: relative;
    z-index: 1;
}

.waitlist-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    text-align: center;
    background: #fafafa;
}

.audience-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.audience-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.audience-item {
    padding: 24px;
    background: white;
    border-radius: 12px;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    text-align: center;
}

.philosophy-quote {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-content::before {
    content: '"';
    font-size: 20px;
    color: #999;
}

.testimonial-content::after {
    content: '"';
    font-size: 20px;
    color: #999;
}

.testimonial-author {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: #fafafa;
}

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

.pricing-header h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.pricing-header p {
    font-size: 18px;
    color: #666;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #1a1a1a;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: #e8f5e8;
    color: #2d5a2d;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #1a1a1a;
    transform: scale(1.05);
}

.pricing-header-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.pricing-header-card p {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature {
    padding: 8px 0;
    color: #1a1a1a;
}

.feature.disabled {
    color: #999;
}

/* Footer */
.footer {
    padding: 80px 0 32px;
    background: #0f0f0f;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.footer-logo-image {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: #999;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 48px);
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }

    .hero-cta {
        gap: 12px;
    }

    .hero-features {
        gap: 16px;
        margin-bottom: 32px;
    }

    .hero-feature {
        font-size: 13px;
        padding: 10px 16px;
    }



    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-item {
        padding: 24px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-status {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial {
        padding: 24px;
    }

    .email-preview {
        margin: 0 16px;
    }

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

    .metric-card {
        padding: 20px;
    }

    .metric-card .metric-value {
        font-size: 24px;
    }

    .insights-grid,
    .recommendations-grid {
        gap: 16px;
    }

    .insight-card,
    .recommendation-card {
        padding: 16px;
    }

    .recommendation-header {
        margin-right: 80px;
    }

    .priority-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group input {
        min-width: auto;
        width: 100%;
    }

    .waitlist-stats {
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .waitlist-stats {
        flex-direction: column;
        gap: 24px;
    }
}