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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    font-size: 24px;
}

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

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    font-weight: normal;
}

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

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #667eea;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

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

.btn-primary.large, .btn-secondary.large {
    padding: 18px 36px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

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

.app-screenshot-container {
    max-width: 250px;
    width: 100%;
    text-align: center;
}

.app-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 250px;
}

.app-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.placeholder-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.placeholder-content p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.placeholder-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.placeholder-feature {
    font-size: 14px;
    opacity: 0.9;
}

/* Download Section */
.download-section {
    background: #f8fafc;
    padding: 80px 0;
}

.download-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.download-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 40px;
    font-style: italic;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.store-badge {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge-small {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.store-badge-small:hover {
    transform: scale(1.05);
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.download-card.android:hover {
    border-color: #34a853;
}

.download-card.ios:hover {
    border-color: #007aff;
}

.download-card.windows:hover {
    border-color: #0078d4;
}

.download-icon {
    font-size: 48px;
}

.download-info {
    flex: 1;
}

.download-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.download-store {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.download-arrow {
    font-size: 24px;
    color: #667eea;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-card:hover .download-arrow {
    opacity: 1;
}

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

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 20px;
    color: #666;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    background: white;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

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

/* Security Section */
.security {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    padding: 100px 0;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.security-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.security-check {
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-link {
    color: #bfdbfe;
    text-decoration: none;
    font-weight: 500;
}

.security-link:hover {
    color: white;
}

.security-visual {
    display: flex;
    justify-content: center;
}

.encryption-demo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.demo-step {
    margin: 20px 0;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.step-text {
    font-size: 16px;
    font-weight: 500;
}

.encryption-arrow {
    font-size: 24px;
    margin: 10px 0;
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    background: #f8fafc;
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.plan-badge {
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.plan-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
}

.period {
    font-size: 18px;
    color: #666;
}

.plan-features {
    margin-bottom: 40px;
}

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

.plan-button {
    background: #667eea;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.plan-button:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    padding: 5px 0;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: #374151;
    color: #9ca3af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Registration Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
}

.nav {
    display: flex;
    gap: 20px;
}

.main {
    min-height: calc(100vh - 140px);
    padding: 40px 0;
}

.registration-hero {
    text-align: center;
    margin-bottom: 60px;
}

.registration-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.registration-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #667eea;
    color: white;
}

.step-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #667eea;
    font-weight: 600;
}

.progress-line {
    height: 2px;
    background: #e5e7eb;
    flex: 1;
    margin: 0 10px;
    margin-top: -20px;
}

.registration-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.verification-icon, .success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.email-display {
    background: #f3f4f6;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #667eea;
    margin: 15px 0;
}

.registration-form, .verification-form, .password-setup-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:invalid {
    border-color: #ef4444;
}

.form-input:valid {
    border-color: #10b981;
}

.code-input {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.input-help {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
}

.password-input-container {
    position: relative;
}

.password-input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    padding: 4px;
}

.password-strength {
    margin-top: 10px;
}

.strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    width: 0;
    background: #ef4444;
}

.strength-fill.medium {
    background: #f59e0b;
    width: 50%;
}

.strength-fill.strong {
    background: #10b981;
    width: 100%;
}

.strength-text {
    font-size: 12px;
    color: #6b7280;
}

.password-match {
    margin-top: 6px;
    font-size: 14px;
}

.password-match.match {
    color: #10b981;
}

.password-match.no-match {
    color: #ef4444;
}

.password-requirements {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.password-requirements h4 {
    margin-bottom: 15px;
    color: #374151;
    font-size: 16px;
}

.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
}

.requirement.met {
    color: #10b981;
}

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

.requirement.met .req-icon {
    color: #10b981;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.link {
    color: #667eea;
    text-decoration: none;
}

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

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary:disabled:hover,
.btn-secondary:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-primary.loading .btn-text,
.btn-secondary.loading .btn-text {
    opacity: 0;
}

.btn-primary.loading .btn-loading,
.btn-secondary.loading .btn-loading {
    display: block;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.error-message {
    color: #ef4444;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    color: #10b981;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    display: none;
}

.success-message.show {
    display: block;
}

.benefits-sidebar {
    background: #f9fafb;
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.benefits-sidebar h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    font-size: 24px;
    margin-top: 2px;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.security-badges .badge {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Verification Page Styles */
.verification-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.resend-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.resend-section p {
    color: #6b7280;
    margin-bottom: 15px;
}

.resend-timer {
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
}

.help-section {
    margin-top: 40px;
}

.help-details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
}

.help-details summary {
    cursor: pointer;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

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

.help-content li {
    padding: 8px 0;
    color: #6b7280;
    font-size: 14px;
}

.help-content li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

.email-preview {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.email-preview h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.email-mockup {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fafb;
}

.email-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.email-from,
.email-subject {
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.email-body {
    padding: 30px;
    background: white;
}

.email-body h4 {
    color: #333;
    margin-bottom: 15px;
}

.email-body p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.email-code-box {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 25px 0;
}

.email-code {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.email-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.email-footer hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}

.email-footer small {
    color: #9ca3af;
}

/* Password Setup Page Styles */
.password-setup-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.security-info .security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.security-info .security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-info .security-icon {
    font-size: 32px;
    margin-top: 5px;
}

.security-info .security-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.security-info .security-content p {
    color: #666;
    line-height: 1.5;
}

/* Success Page Styles */
.success-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.success-animation {
    margin-bottom: 40px;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: success-bounce 0.6s ease-out;
}

.checkmark {
    color: white;
    font-size: 60px;
    font-weight: bold;
}

@keyframes success-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-content {
    text-align: left;
}

.success-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.success-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.account-info {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.account-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #374151;
}

.info-value {
    color: #667eea;
    font-weight: 500;
}

.status-active {
    color: #10b981 !important;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-item {
    background: #f9fafb;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.action-buttons {
    margin-bottom: 40px;
}

.download-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

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

.download-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-btn.android-btn:hover {
    border-color: #34a853;
}

.download-btn.ios-btn:hover {
    border-color: #007aff;
}

.download-btn.windows-btn:hover {
    border-color: #0078d4;
}

.download-text {
    flex: 1;
}

.download-text .download-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.download-text .download-store {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.additional-info {
    margin-bottom: 40px;
}

.additional-info h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.help-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.help-link {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: #333;
}

.help-link:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.help-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.email-notification {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.notification-icon {
    font-size: 32px;
}

.notification-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0369a1;
}

.notification-content p {
    color: #0369a1;
    font-size: 14px;
}

/* Footer Styles */
.registration-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.registration-footer .footer-content {
    text-align: center;
    margin-bottom: 20px;
}

.registration-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.registration-footer .footer-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

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

.registration-footer .footer-bottom {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .registration-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-sidebar {
        position: static;
    }
    
    .verification-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .email-preview {
        position: static;
    }
    
    .progress-indicator {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .progress-line {
        display: none;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .registration-title {
        font-size: 32px;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .success-card {
        padding: 30px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        grid-template-columns: 1fr;
    }
    
    .registration-footer .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}