/* TwentyBack Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

/* Brand Colors */
:root {
    --brand-blue: #2563EB;
    --brand-green: #059669;
    --brand-orange: #EA580C;
    --brand-charcoal: #374151;
    --brand-light: #F9FAFB;
}

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

.text-center { text-align: center; }
.text-white { color: white; }
.text-blue { color: var(--brand-blue); }
.text-green { color: var(--brand-green); }
.text-orange { color: var(--brand-orange); }
.text-gray { color: #6B7280; }

.bg-white { background-color: white; }
.bg-light { background-color: var(--brand-light); }
.bg-blue { background-color: var(--brand-blue); }
.bg-green { background-color: var(--brand-green); }
.bg-orange { background-color: var(--brand-orange); }
.bg-charcoal { background-color: var(--brand-charcoal); }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #d97706;
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

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

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

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--brand-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brand-light) 0%, white 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--brand-blue);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--brand-charcoal);
    margin-bottom: 32px;
}

.hero .description {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6B7280;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    margin-bottom: 60px;
    align-items: start;
}

.before-card, .after-card {
    padding: 32px;
    border-radius: 12px;
    border: 2px solid;
}

.before-card {
    background: #fef2f2;
    border-color: #fecaca;
}

.after-card {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.before-card h3 {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.after-card h3 {
    color: var(--brand-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.before-card ul {
    color: #dc2626;
}

.after-card ul {
    color: var(--brand-green);
}

.arrow {
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand-blue);
}

.feature-icon.green {
    background: rgba(5, 150, 105, 0.1);
    color: var(--brand-green);
}

.feature-icon.orange {
    background: rgba(234, 88, 12, 0.1);
    color: var(--brand-orange);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--brand-charcoal);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--brand-light);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 16px;
}

.testimonial-avatar.blue { background: var(--brand-blue); }
.testimonial-avatar.green { background: var(--brand-green); }
.testimonial-avatar.orange { background: var(--brand-orange); }

.testimonial-info h4 {
    font-weight: 600;
    color: var(--brand-charcoal);
}

.testimonial-info p {
    color: #6B7280;
    font-size: 0.9rem;
}

.testimonial-content {
    color: #374151;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-rating {
    color: var(--brand-green);
    font-weight: 600;
}

/* Phrase Cards */
.phrase-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phrase-icon {
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.phrase-icon .feather {
    width: 32px;
    height: 32px;
}

.phrase-icon.blue { color: var(--brand-blue); }
.phrase-icon.green { color: var(--brand-green); }
.phrase-icon.orange { color: var(--brand-orange); }

.phrase-icon i {
    color: white;
}

.phrase-content {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

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

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

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

.faq-item {
    background: var(--brand-light);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.faq-item p {
    color: #374151;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.final-cta .description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .note {
    margin-top: 16px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--brand-charcoal);
    color: white;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--brand-blue);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 8px;
}

/* Signup Form Styles */
.signup-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.signup-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--brand-light) 0%, white 100%);
}

.signup-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 500px;
    width: 100%;
}

.signup-header {
    text-align: center;
    margin-bottom: 32px;
}

.signup-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.signup-header p {
    color: #6B7280;
    font-size: 1rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label .required {
    color: #dc2626;
    margin-left: 4px;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
    border-color: #dc2626;
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
    display: none;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 6px;
}

/* Toggle Component Styles */
.signup-method-instructions {
    text-align: center;
    margin-bottom: 16px;
}

.signup-method-instructions p {
    color: #6B7280;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.signup-method-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.toggle-option {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    color: #6c757d;
    font-family: inherit;
}

.toggle-option svg {
    flex-shrink: 0;
}

.toggle-option.active {
    background: white;
    color: #495057;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    color: #495057;
}

/* Contact Field Container */
#contact-field-container {
    position: relative;
}

.contact-field {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.contact-field.active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Phone-specific styles */
.field-hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 4px;
    display: block;
}

.turnstile-container {
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.form-message {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-align: center;
}

.form-message.success {
    background-color: #f0fdf4;
    color: var(--brand-green);
    border: 2px solid #bbf7d0;
}

.form-message.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.submit-button {
    padding: 16px 32px;
    background-color: var(--brand-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-button:hover:not(:disabled) {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.submit-button:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

.button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.privacy-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.875rem;
    color: #6B7280;
}

.privacy-note a {
    color: var(--brand-blue);
    text-decoration: none;
}

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

.back-link {
    text-align: center;
    margin-top: 24px;
}

.back-link a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* Success Page Styles */
.success-page {
    background: var(--brand-light);
}

.success-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease-out;
}

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

.success-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.success-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Next Steps Section */
.next-steps {
    padding: 60px 0;
    background: white;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 48px;
}

.steps-container {
    display: grid;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--brand-light);
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

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

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.step-content p {
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.6;
}

.step-note {
    color: var(--brand-orange) !important;
    font-weight: 500;
    margin-top: 16px !important;
}

.step-timeline {
    color: #6B7280 !important;
    font-style: italic;
    margin-top: 16px !important;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 16px;
}

/* Beta Benefits */
.beta-benefits {
    padding: 60px 0;
    background: var(--brand-light);
}

.beta-benefits h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 48px;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-green);
}

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

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6B7280;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background: white;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 48px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-green) 100%);
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border: 3px solid var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--brand-light);
    padding: 20px 24px;
    border-radius: 12px;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 8px;
}

.timeline-content p {
    color: #374151;
}

/* Quick Start Resources */
.quick-start {
    padding: 60px 0;
    background: var(--brand-light);
}

.quick-start h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 48px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.resource-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.1);
}

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

.resource-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.resource-card p {
    color: #6B7280;
    margin-bottom: 16px;
}

.resource-link {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--brand-orange);
}

/* Support Section */
.support-section {
    padding: 60px 0;
    background: white;
}

.support-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 48px;
}

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

.support-card {
    background: var(--brand-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

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

.support-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.support-card p {
    color: #374151;
    margin-bottom: 20px;
}

/* Community Section */
.community-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    text-align: center;
}

.community-section h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 48px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .arrow {
        order: 2;
        margin: 20px auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .signup-box {
        padding: 32px 24px;
    }
    
    .signup-header h1 {
        font-size: 1.75rem;
    }
    
    /* Toggle responsive adjustments */
    .toggle-option {
        font-size: 0.875rem;
        padding: 10px 12px;
    }
    
    .toggle-option svg {
        width: 16px;
        height: 16px;
    }
    
    /* Success Page Mobile */
    .success-header h1 {
        font-size: 2rem;
    }
    
    .success-header .subtitle {
        font-size: 1rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .next-steps h2,
    .beta-benefits h2,
    .timeline-section h2,
    .quick-start h2,
    .support-section h2,
    .community-section h2 {
        font-size: 1.75rem;
    }
    
    .step-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Verification Page Styles */
.verification-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.verification-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.verification-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.verification-header {
    margin-bottom: 32px;
}

.verification-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 12px;
}

.verification-icon svg {
    width: 100%;
    height: 100%;
}

.verification-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.verification-header .subtitle {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.5;
}

.verification-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Code Input Styling */
.code-input-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 16px 0;
}

.code-digit {
    width: 48px;
    height: 56px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: inherit;
}

.code-digit:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.code-digit.filled {
    border-color: var(--brand-green);
    background: rgba(5, 150, 105, 0.05);
}

.code-digit.error {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.code-digit.success {
    border-color: var(--brand-green);
    background: rgba(5, 150, 105, 0.1);
}

/* Resend Section */
.resend-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.resend-text {
    color: #6B7280;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.btn-link {
    background: none;
    border: none;
    color: var(--brand-blue);
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    padding: 4px 8px;
    font-family: inherit;
    transition: color 0.2s ease;
}

.btn-link:disabled {
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: none;
}

.btn-link:hover:not(:disabled) {
    color: var(--brand-green);
}

#resend-timer {
    color: #9ca3af;
    font-weight: normal;
    margin-left: 4px;
}

/* Alternative Actions */
.alternative-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.help-section {
    text-align: center;
}

.help-section p {
    color: #6B7280;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.support-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.support-link:hover {
    text-decoration: underline;
    color: var(--brand-green);
}

/* Success state for button */
.submit-button.success {
    background-color: var(--brand-green);
}

.submit-button.success:hover {
    background-color: var(--brand-green);
}

/* Mobile Responsiveness for Verification Page */
@media (max-width: 768px) {
    .verification-box {
        padding: 32px 24px;
        margin: 1rem;
    }
    
    .verification-header h1 {
        font-size: 1.5rem;
    }
    
    .code-digit {
        width: 40px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .code-input-container {
        gap: 8px;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
    }
    
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .code-digit {
        transition: none;
    }
    
    .btn-link {
        transition: none;
    }
    
    .support-link {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .code-digit {
        border-width: 3px;
    }
    
    .code-digit:focus {
        box-shadow: 0 0 0 3px black;

/* Feather Icons Custom Styles */

/* Inline icons for text */
.inline-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    stroke-width: 2;
}

/* Text color variants for inline icons */
.text-red {
    color: #dc2626;
}

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

/* Star rating styles */
.star-rating {
    display: inline-flex;
    gap: 2px;
    margin-right: 8px;
}

.star-filled {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
    stroke: #fbbf24;
    stroke-width: 1;
}

/* Feature icons sizing */
.feature-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* Benefit icons sizing */
.benefit-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* Timeline marker icons */
.timeline-marker i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Resource icons */
.resource-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* Support icons */
.support-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* Success page main icon */
.success-icon i {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
    color: var(--brand-green);
}

/* Toggle button icons */
.toggle-option i {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke-width: 1.5;
}

/* Responsive adjustments for icons */
@media (max-width: 768px) {
    .success-icon i {
        width: 48px;
        height: 48px;
    }
    
    .timeline-marker i {
        width: 16px;
        height: 16px;
    }
}