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

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #eff6ff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fefefe 0%, var(--bg-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--success-color);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-subtext {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Card */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.125rem;
    margin: 0;
}

.status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.card-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.amount {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    border-radius: 4px;
    animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 100%; }
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.social-proof-text {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Problem Section */
.problem {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.problem-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Integration Options */
.integration-options {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.integration-option {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.integration-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.integration-option:first-child {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
}

.integration-option:first-child::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.integration-option h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.integration-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.accounting-logo {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accounting-logo.quickbooks {
    background: #0077c5;
    color: white;
    border-color: #0077c5;
}

.accounting-logo.xero {
    background: #13b5ea;
    color: white;
    border-color: #13b5ea;
}

.accounting-logo.more {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px dashed var(--border-color);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-formats {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.format-badge {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.integration-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.integration-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.integration-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.integration-badge {
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Solution Section */
.solution {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

/* Pressure Campaign Section */
.pressure-campaign {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.campaign-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 3rem;
    bottom: -2rem;
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.timeline-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    font-weight: bold;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.message-example {
    background: var(--bg-accent);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
}

.message-example::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    font-weight: bold;
}

.message-example::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    right: 0.5rem;
    bottom: -1rem;
    font-weight: bold;
}

.customization-note {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 500;
}

.customization-panel {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.customization-header {
    text-align: center;
    margin-bottom: 3rem;
}

.customization-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.customization-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.option-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.option-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.option-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

.process-steps {
    display: grid;
    gap: 3rem;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.testimonial {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.price-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-text {
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--bg-secondary);
}

.feature:last-child {
    border-bottom: none;
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-example {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.pricing-example h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pricing-example p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-indicator {
    margin-bottom: 2rem;
}

.urgency-text {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
}

.final-cta .btn {
    margin-bottom: 1.5rem;
    background: white;
    color: var(--primary-color);
}

.final-cta .btn:hover {
    background: var(--bg-secondary);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

    .nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

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

    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

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

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .integration-option {
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .timeline-icon {
        align-self: center;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .customization-panel {
        padding: 2rem;
    }

    .customization-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .option-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-indicators {
        justify-content: center;
    }
}

/* Signup Page Styles */
.signup-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fefefe 0%, var(--bg-accent) 100%);
    min-height: 100vh;
    position: relative;
}

.signup-content {
    max-width: 1000px;
    margin: 0 auto;
}

.signup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.signup-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.signup-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.signup-form-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.signup-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-input.error {
    border-color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.signup-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 700;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
    margin-top: 1rem;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.signup-benefits {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.signup-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.next-steps {
    margin-bottom: 2rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

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

.guarantee-box {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.guarantee-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.guarantee-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.social-proof-mini {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.social-proof-mini p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-proof-mini span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.success-message {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.success-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.success-message p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.success-message .btn {
    margin-top: 2rem;
    background: white;
    color: var(--success-color);
}

.success-message .btn:hover {
    background: var(--bg-secondary);
}

/* Responsive Design for Signup Page */
@media (max-width: 768px) {
    .signup-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .signup-form-card {
        padding: 2rem;
    }
    
    .signup-benefits {
        padding: 2rem;
    }
    
    .signup-header h1 {
        font-size: 2rem;
    }
    
    .next-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .signup-hero {
        padding: 100px 0 60px;
    }
    
    .signup-form-card {
        padding: 1.5rem;
    }
    
    .signup-benefits {
        padding: 1.5rem;
    }
    
    .signup-header h1 {
        font-size: 1.75rem;
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.legal-document h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-document strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

.legal-document a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

/* Responsive styling for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-document {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .legal-document {
        padding: 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 1.75rem;
    }
}

/* Checkout Page Styling */
.checkout-content {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Summary */
.product-summary {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.product-card {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(30, 64, 175, 0.2);
    margin-bottom: 2rem;
}

.product-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.product-details h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-display {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Checkout Form */
.checkout-form {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

.form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-input.error {
    border-color: var(--danger-color);
}

.form-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Stripe Elements */
.stripe-element {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    transition: var(--transition);
}

.stripe-element:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Checkout Summary */
.checkout-summary {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.summary-row.total {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.billing-cycle {
    text-align: center;
    margin-top: 1rem;
}

.billing-cycle small {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px;
    margin-bottom: 1.5rem;
}

.checkout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Checkout Footer */
.checkout-footer {
    text-align: center;
}

.terms-agreement {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.terms-agreement a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.security-info {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Guarantee Box */
.guarantee-box {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.guarantee-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.guarantee-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Error Styling */
.error-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-summary,
    .checkout-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .checkout-content {
        padding: 100px 0 60px;
    }
    
    .product-summary,
    .checkout-form {
        padding: 1.5rem;
    }
    
    .product-header h1 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* Success Page Styling */
.success-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    min-height: 100vh;
}

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

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

.check-circle {
    display: inline-block;
    animation: successPulse 1s ease-out;
}

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

.success-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.success-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.success-details {
    display: grid;
    gap: 2rem;
    text-align: left;
}

.subscription-info,
.next-steps,
.support-box,
.guarantee-reminder {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.subscription-info h3,
.next-steps h3,
.support-box h4,
.guarantee-reminder h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.sub-details {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.support-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.support-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Success Animation */
@keyframes successPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design for Success Page */
@media (max-width: 768px) {
    .success-page {
        padding: 100px 0 60px;
    }
    
    .success-header h1 {
        font-size: 2rem;
    }
    
    .subscription-info,
    .next-steps,
    .support-box,
    .guarantee-reminder {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .support-links {
        flex-direction: column;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .success-header h1 {
        font-size: 1.75rem;
    }
    
    .subscription-info,
    .next-steps,
    .support-box,
    .guarantee-reminder {
        padding: 1rem;
    }
}

/* Dashboard Page Styling */
.dashboard-page {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.coming-soon-notice {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.notice-content {
    padding: 3rem;
    text-align: center;
}

.notice-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.notice-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.notice-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.launch-timeline,
.interim-actions,
.support-info {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
}

.launch-timeline h3,
.interim-actions h3,
.support-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.launch-timeline p,
.interim-actions p,
.support-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.interim-actions .btn {
    margin-top: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-option:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-page {
        padding: 100px 0 60px;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .notice-content {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .launch-timeline,
    .interim-actions,
    .support-info {
        padding: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .dashboard-header h1 {
        font-size: 1.75rem;
    }
    
    .notice-content {
        padding: 1.5rem;
    }
    
    .notice-icon {
        font-size: 3rem;
    }
    
    .notice-content h2 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }

/* Subscription Summary Styles */
.subscription-summary {
    min-height: calc(100vh - 80px);
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
}

.subscription-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.subscription-header {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.subscription-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subscription-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.product-showcase {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.product-showcase .product-icon {
    margin-bottom: 0.75rem;
}

.product-showcase .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.product-showcase h2 {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0.75rem 0;
}

.price-hero {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0;
}

.price-hero .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
}

.price-hero .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
}

.price-hero .period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: #f9fafb;
}

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

.benefit-icon {
    font-size: 1.25rem;
    min-width: 1.5rem;
    text-align: center;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.85rem;
}

.benefit-text span {
    font-size: 0.75rem;
    color: #6b7280;
}

.subscription-details {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.detail-item {
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-size: 0.9rem;
}

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

.btn-hero {
    width: calc(100% - 4rem);
    margin: 2rem;
    margin-top: 0;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.btn-hero:active {
    transform: translateY(0);
}

.btn-hero:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.security-note {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    text-align: center;
}

.security-item {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

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

.terms-note {
    padding: 0.75rem 1.5rem 1.25rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

.terms-note a {
    color: #1e40af;
    text-decoration: none;
}

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

/* Mobile responsiveness for subscription summary */
@media (max-width: 768px) {
    .subscription-card {
        margin: 1rem;
        border-radius: 12px;
    }
    
    .subscription-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .subscription-header h1 {
        font-size: 2rem;
    }
    
    .product-showcase {
        padding: 1.5rem;
    }
    
    .price-hero .amount {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .subscription-details {
        padding: 1.5rem;
    }
    
    .btn-hero {
        width: calc(100% - 3rem);
        margin: 1.5rem;
        margin-top: 0;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .security-note {
        padding: 1rem 1.5rem;
    }
    
    .terms-note {
        padding: 1rem 1.5rem 1.5rem;
    }
}
