/* Global Link Styles */
a {
    color: #1b7499;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #145c7a;
    text-decoration: underline;
}

a:visited {
    color: #1b7499;
}

/* Hero Section - Focused on AI visibility */
.hero { 
    background-color: #f8fafc; /* Fallback color */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 5rem 0; 
    text-align: center; 
}
.hero h1 { 
    font-size: 3.5rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    color: #1a202c; 
    line-height: 1.2; 
}
.hero-subtitle { 
    font-size: 1.3rem; 
    color: #4a5568; 
    margin-bottom: 3rem; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
    line-height: 1.6;
}

/* Value Props */
.value-props-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.value-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #374151;
}
.prop-icon {
    font-size: 1.2rem;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 4rem;
}
.url-input-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}
.url-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: #374151;
}
.url-input::placeholder {
    color: #9ca3af;
}
.cta-subtitle {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Hero Stats */
.hero-stats { 
    display: flex; 
    justify-content: center; 
    gap: 4rem; 
    margin-top: 3rem; 
}
.stat { 
    text-align: center; 
}
.stat-number { 
    display: block; 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: #2563eb; 
}
.stat-label { 
    font-size: 0.9rem; 
    color: #6b7280; 
}

/* How It Works */
.how-it-works { 
    padding: 5rem 0; 
    background: white;
}
.how-it-works h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    color: #1a202c;
}
.section-subtitle { 
    text-align: center; 
    font-size: 1.1rem; 
    color: #6b7280; 
    margin-bottom: 4rem; 
}
.process-steps { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 3rem; 
}
.step { 
    text-align: center; 
}
.step-number { 
    width: 70px; 
    height: 70px; 
    background: #2563eb; 
    color: white; 
    font-size: 1.8rem; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.5rem; 
}
.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
}
.step p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits { 
    padding: 5rem 0; 
    background: #f9fafb; 
}
.benefits h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    color: #1a202c;
}
.benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem; 
}
.benefit-card { 
    background: white; 
    padding: 2.5rem; 
    border: 1px solid #e5e7eb;
    transition: all 0.3s; 
}
.benefit-card:hover { 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    transform: translateY(-3px);
}
.benefit-icon { 
    font-size: 3rem; 
    margin-bottom: 1.5rem; 
}
.benefit-card h3 { 
    font-size: 1.3rem; 
    margin-bottom: 1rem; 
    color: #1a202c; 
}
.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials */
.testimonials { 
    padding: 5rem 0; 
    background: white;
}
.testimonials h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 3rem; 
    color: #1a202c;
}
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem; 
}
.testimonial { 
    background: #f9fafb; 
    padding: 2.5rem; 
    border-left: 4px solid #2563eb;
}
.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-headshot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e5e7eb; /* Placeholder color */
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.author-info strong { 
    color: #1a202c; 
    font-size: 1rem;
}
.testimonial-author span { 
    color: #6b7280; 
    font-size: 0.9rem; 
    display: block;
    margin-top: 0.25rem;
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    padding: 0 50px; /* More space for larger buttons */
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonials-grid { 
    display: flex;
    gap: 2rem; /* Use gap for consistent spacing */
    transition: transform 0.5s ease-in-out;
}

.testimonial { 
    background: #ffffff; /* Change to white for a cleaner look */
    padding: 2.5rem; 
    border: 1px solid #e5e7eb; /* Add a subtle border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Softer shadow */
    flex: 0 0 calc(33.333% - (4rem / 3)); /* 3 items per view, accounting for 2rem gap */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 48px; /* Larger button */
    height: 48px; /* Larger button */
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    color: #374151;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

@media (max-width: 992px) {
    .testimonial {
        flex: 0 0 calc(50% - 1rem); /* 2 items per view */
    }
}

@media (max-width: 768px) {
    .testimonial-carousel-wrapper {
        padding: 0;
    }
    .testimonial {
        flex: 0 0 100%; /* 1 item per view */
        margin-right: 0;
    }
    .testimonials-grid {
        gap: 1.5rem; /* Adjust gap for mobile */
    }
    .carousel-btn {
        display: none; /* Hiding buttons on mobile for a cleaner look, relies on auto-rotate */
    }
}

/* Pricing */
.pricing { 
    padding: 5rem 0; 
    background: #f9fafb;
}
.pricing h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    color: #1a202c;
}
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}
.price-header {
    text-align: center;
    margin-bottom: 2rem;
}
.price-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}
.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}
.currency {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
}
.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #2563eb;
}
.period {
    font-size: 1.2rem;
    color: #6b7280;
    margin-left: 0.25rem;
}
.price-description {
    color: #6b7280;
    font-size: 1rem;
}
.features-list {
    margin-bottom: 2rem;
}
.feature {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 1rem;
}
.feature:last-child {
    border-bottom: none;
}
.pricing-cta {
    text-align: center;
}
.pricing-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing .feature {
    margin-bottom: 0.75rem;
}

.pricing .pricing-cta {
    margin-top: 1.5rem;
}

.pricing .pricing-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #555;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card.popular {
    border-color: #4f46e5;
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #6d28d9, #4f46e5);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}


/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #08537e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:visited,
.btn-primary:active {
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    background: #064567;
}

.btn-primary:active {
    background: #053a57;
}

.btn-primary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* AI Says Button */
.ai-says-section {
    margin-bottom: 2rem;
    text-align: center;
}

.ai-says-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ai-says-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

/* AI Modal - ChatGPT Style */
.ai-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ai-modal-content {
    background: #343541;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ai-modal-header {
    background: #40414f;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #565869;
}

.ai-modal-header h3 {
    color: #ececf1;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.ai-modal-close {
    background: none;
    border: none;
    color: #8e8ea0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.ai-modal-close:hover {
    color: #ececf1;
}

.ai-modal-body {
    padding: 2rem;
    background: #343541;
}

.ai-response {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    background: #10a37f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.ai-avatar span {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
}

.ai-message {
    flex: 1;
    color: #ececf1;
    line-height: 1.6;
}

.ai-message p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ai-message h4 {
    color: #ececf1;
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.ai-message ul {
    margin: 0.75rem 0 1.5rem 1.5rem;
    color: #d1d5db;
}

.ai-message li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.ai-message strong {
    color: #ececf1;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .value-props-container { flex-direction: column; align-items: center; gap: 1rem; }
    .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .price {
        flex-direction: row;
        align-items: baseline;
        gap: 0.25rem;
    }
    .amount { font-size: 3rem; }
    .url-input-container { 
        flex-direction: column; 
        max-width: 400px;
        padding: 1rem;
    }
    .url-input {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .ai-modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .ai-modal-header {
        padding: 1rem;
    }
    
    .ai-modal-body {
        padding: 1rem;
    }
    
    .ai-response {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ai-avatar {
        align-self: flex-start;
    }
} 

/* Status Check Page Styles - Clean Professional Design */
.status-check {
    padding: 40px 0 60px;
    background: #f8fafc;
    min-height: 100vh;
}

.status-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.domain-display {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    background: #e2e8f0;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.status-header h2 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.3px;
}

.status-card {
    background: white;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.status-card > .status-icon,
.status-card > h2,
.status-card > p {
    text-align: center;
}

.status-card.processing {
    border-top: 5px solid #007bff;
}

.status-card.complete {
    border-top: 5px solid #28a745;
}

.status-card.error {
    border-top: 5px solid #dc3545;
}

.status-icon {
    font-size: 2rem;
    display: block;
    margin: 5px 0;
}

.status-icon.spinning {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-card p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: width 0.3s ease;
    animation: pulse 2s infinite;
}

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

.processing-note {
    font-style: italic;
    color: #007bff;
    margin-top: 10px;
}

/* Analysis Results - Clean Professional Styling */
.analysis-results {
    margin-top: 30px;
    text-align: left;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.analysis-results h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.analysis-status {
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.status-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.status-header .status-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
}

.status-header .status-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a202c;
}

.status-message {
    margin-bottom: 25px;
    text-align: center;
}

.status-message p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-message .btn-primary {
    font-size: 1rem;
    padding: 12px 24px;
    min-width: 200px;
}

.status-message.error .btn-primary {
    background: #e53e3e;
    border-color: #c53030;
}

.status-message.error .btn-primary:hover {
    background: #c53030;
    border-color: #9b2c2c;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.analysis-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.analysis-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analysis-points li {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.85rem;
    padding-left: 12px;
    position: relative;
    line-height: 1.4;
}

.analysis-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0aec0;
}

.key-findings {
    margin-top: 20px;
}

.key-findings h4 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

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

.finding {
    padding: 15px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.finding strong {
    color: #2d3748;
    font-size: 0.85rem;
    font-weight: 600;
}

.finding span {
    color: #718096;
    font-size: 0.85rem;
}

.screenshot-section {
    margin-top: 25px;
}

.screenshot-section h4 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.screenshot-container {
    text-align: left;
}

.website-screenshot {
    max-width: 400px; /* Limit width to create a thumbnail effect */
    width: 100%; /* Ensure it's responsive within the container */
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.website-screenshot:hover {
    border-color: #cbd5e0;
}

.screenshot-note {
    color: #a0aec0;
    font-style: italic;
    margin-top: 8px;
    font-size: 0.8rem;
}

.analysis-meta {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.analysis-meta p {
    color: #6b7280;
    font-size: 0.9rem;
}

.status-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.status-actions .btn-secondary {
    background-color: #ffffff;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.status-actions .btn-secondary:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

/* Screenshot Modal */
.screenshot-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.screenshot-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
}

.screenshot-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.screenshot-close:hover {
    opacity: 0.7;
}

#screenshotModalImg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Clean Responsive Design for Status Page */
@media (max-width: 768px) {
    .status-check {
        padding: 30px 0 40px;
    }
    
    .status-header h1 {
        font-size: 1.5rem;
    }
    
    .domain-display {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .status-card {
        padding: 20px 15px;
        margin: 0 15px;
    }
    
    .suitability-score {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .score-circle {
        width: 70px;
        height: 70px;
        border-width: 5px;
    }
    
    .score-number {
        font-size: 1.2rem;
    }
    
    .score-label {
        font-size: 0.7rem;
    }
    
    .findings-grid {
        grid-template-columns: 1fr;
    }
    
    .finding {
        padding: 12px;
    }
    
    .status-actions {
        justify-content: center;
        gap: 8px;
    }
} 

/* Registration Form Styles */
.register-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

@media (max-width: 640px) {
    .register-container {
        padding: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border: none;
        box-shadow: none;
    }
}

.register-container h1 {
    text-align: center;
    color: #1a202c;
    margin-bottom: 10px;
}

.lead {
    text-align: center;
    color: #4a5568;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    background-color: #f7fafc;
    color: #2d3748;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Error Message Styles */
.error-message {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 12px;
    margin-bottom: 20px;
}

.error-message p {
    color: #7f1d1d; /* Dark red color */
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.error-message p + p {
    margin-top: 8px;
}

/* Password Requirements Styles */
.password-requirements {
    margin-top: 10px;
    font-size: 0.9rem;
}

.password-requirements p {
    color: #4a5568;
    margin-bottom: 5px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement {
    color: #7f1d1d; /* Dark red for unmet requirements */
    margin: 3px 0;
    padding-left: 20px;
    position: relative;
}

.requirement::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #7f1d1d;
    font-weight: bold;
}

.requirement-met {
    color: #046c4e; /* Dark green for met requirements */
}

.requirement-met::before {
    content: "✓";
    color: #046c4e;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

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

/* Terms Agreement Styles */
.terms-agreement {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.terms-agreement a {
    font-weight: 500;
}

/* Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.dashboard-header h1 {
    font-size: 2rem;
    color: #1a202c;
    margin: 0 0 10px 0;
}

.dashboard-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
}

.dashboard-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.dashboard-placeholder {
    text-align: center;
    padding: 60px 0;
    color: #718096;
}

.redirect-notice {
    color: #4299e1;
    font-style: italic;
    margin-top: 15px;
    font-size: 0.9rem;
} 

/* Locked Input Styles */
.locked-input-container {
    position: relative;
}

.locked-input-container .lock-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #718096;
    pointer-events: none;
}

.form-control.locked {
    background-color: #edf2f7;
    color: #4a5568;
    cursor: not-allowed;
    padding-right: 35px;
}

.form-control.locked:focus {
    border-color: #e2e8f0;
    box-shadow: none;
}

/* Navigation Styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.white-text {
    color: white !important;
}

.logout-link {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.logout-link:hover {
    color: #1b7499;
    text-decoration: none;
}

.logout-icon {
    font-size: 1.2rem;
    margin-right: 6px;
    transform: rotate(90deg);
}

.main-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

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

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

.nav-left a:not(.logo) {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
}

.nav-left .logo {
    color: #08537e;
}

.nav-left .logo .ai-accent {
    color: #7c3aed;
}

.nav-links { 
    display: none;
    list-style: none;
}
.nav-item {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    margin-top: 0; /* Remove the gap */
}
.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #1d4ed8;
}
.dropdown-toggle::after {
    content: '▾';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.8em;
    opacity: 0.7;
}
.nav-item:hover .dropdown-menu {
    display: block;
}

/* Add padding to the dropdown container to bridge the gap on hover */
.nav-item.dropdown {
    position: relative; /* Ensure the absolute child is positioned relative to this */
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-right .nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-right .nav-link:hover {
    color: #2563eb;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
        gap: 2rem; 
        align-items: center;
    }
    .mobile-menu-icon {
        display: none;
    }
} 
@media (max-width: 768px) { 
    .nav-links {
        display: none;
    }
    .nav-links li {
        text-align: center;
        margin: 0.5rem 0;
    }
    .nav-item.dropdown .dropdown-menu {
        position: static;
        display: none; /* Hidden by default on mobile */
        border: none;
        box-shadow: none;
        background-color: #f9fafb;
        padding-left: 2rem; /* Indent submenu items */
    }
    .nav-item.dropdown.active .dropdown-menu {
        display: block; /* Show when active */
    }
    .mobile-menu-icon {
        display: block;
    }
} 

/* Footer Styles */
.footer { 
    background: #f9fafb; 
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0 2rem; 
    margin-top: 4rem; 
}
.footer-content { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr; 
    gap: 2rem; 
    margin-bottom: 2rem; 
}
.footer-brand h3 { 
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem; 
    color: #08537e; 
}
.footer-brand .ai-accent {
    color: #7c3aed;
}
.footer-brand p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.badge {
    font-size: 0.85rem;
    color: #374151;
}
.footer-section h4 { 
    margin-bottom: 1rem; 
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
}
.footer-section ul { 
    list-style: none; 
}
.footer-section ul li { 
    margin-bottom: 0.5rem; 
}
.footer-section a { 
    color: #6b7280; 
    text-decoration: none; 
    transition: color 0.3s;
    font-size: 0.9rem;
}
.footer-section a:hover { 
    color: #2563eb; 
}
.footer-bottom { 
    border-top: 1px solid #e5e7eb; 
    padding-top: 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
}
.footer-left p {
    color: #6b7280;
    font-size: 0.9rem;
}
.footer-subtitle {
    margin-top: 0.25rem;
    font-size: 0.8rem !important;
    opacity: 0.8;
}
.social-links { 
    display: flex; 
    gap: 1.5rem; 
}
.social-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #2563eb;
}

@media (max-width: 768px) { 
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
        text-align: center; 
    }
} 

/* Dashboard Layout (Google Search Console Inspired) */
.dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-sidebar {
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 24px;
    flex-shrink: 0;
}

.domain-selector {
    margin-bottom: 24px;
}

.domain-selector select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 1em;
}

.nav-divider {
    margin: 16px 0;
    border: none;
    border-top: 1px solid #dee2e6;
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    margin: 4px 0;
}

.dashboard-nav li a:hover {
    background-color: #e9ecef;
}

.dashboard-nav li.active a {
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: 700;
}

.dashboard-nav li a span {
    font-size: 1.2rem;
}

.dashboard-main {
    flex-grow: 1;
    padding: 32px;
    background-color: #fff;
}

.dashboard-main-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-main-content {
    margin-top: 24px;
}

/* Info Box for Dashboard Statuses */
.info-box {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.info-box.pending {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.info-box-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1;
}

.info-box-content strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-box-content p {
    margin: 0;
    line-height: 1.6;
}

.dashboard-main-content .url-input-container {
    max-width: 100%;
    box-shadow: none;
    border: 1px solid #ced4da;
    padding: 1rem;
} 

/* --- Pricing Toggle Switch --- */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.toggle-label {
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
}
.toggle-label.active {
    color: #1e293b;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 1rem;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}
input:checked + .slider {
    background-color: #2563eb;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
.discount-badge {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* FAQ Accordion */
.faq {
    padding: 5rem 0;
    background: #f9fafb;
}
.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem; /* Increased from 40px */
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.accordion-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}
.accordion-header {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a202c;
    transition: background-color 0.2s;
}
.accordion-header:hover {
    background-color: #f9fafb;
}
.accordion-icon {
    width: 1.5em;
    height: 1.5em;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #9ca3af;
    transition: transform 0.3s ease-in-out;
}
.accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-icon::before {
    transform: translate(-50%, -50%);
}
.accordion-item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}
.accordion-item.active .accordion-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: #fff;
}
.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.7;
    color: #4b5563;
}

/* --- FAQ Section --- */
.faq {
    background: #fff; /* Resetting the old styles */
    padding: 5rem 0;
}

/* For content pages like /ai-optimization and /sge-ready */
.feature-section {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}
.feature-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}
.feature-section ul, .feature-section ol {
    padding-left: 0;
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.feature-section ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.feature-section ul li::before {
    content: '✓';
    display: inline-block;
    margin-right: 1rem;
    background-color: #e0f2fe;
    color: #0c4a6e;
    font-weight: 700;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    flex-shrink: 0;
}
.feature-section ol li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    counter-increment: step-counter;
}
.feature-section ol li::before {
    content: counter(step-counter);
    display: inline-block;
    margin-right: 1rem;
    background-color: #dbeafe;
    color: #1e40af;
    font-weight: 700;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    flex-shrink: 0;
}

.final-cta {
    background-color: #1e3a8a; /* A darker blue */
    color: #ffffff;
    padding: 3rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.team-member-card {
    text-align: center;
}
.team-member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}
.team-member-title {
    font-size: 0.95rem;
    color: #475569;
}

/* --- Careers/Job Listings --- */
.job-listing {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}
.job-listing:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.job-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.job-listing-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #1e3a8a;
}
.job-location {
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #e0f2fe;
    color: #0c4a6e;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}
.job-listing-body {
    padding: 1.5rem;
}
.job-listing-body strong {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #1e293b;
}
.job-listing-body ul {
    list-style-position: outside;
    padding-left: 1.25rem;
}
.job-listing-body ul li {
    margin-bottom: 0.75rem;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.contact-card {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}
.contact-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.contact-email {
    font-size: 1.1rem;
    font-weight: 600;
    word-break: break-all;
}
.address {
    font-style: normal;
    font-size: 1.1rem;
}
.text-center {
    text-align: center;
}
.mb-4 {
    margin-bottom: 1.5rem;
} 

/* --- Privacy Policy & TOS --- */
.privacy-content {
    background-color: #fff;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.privacy-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}
.privacy-content h2:first-of-type {
    margin-top: 0;
}
.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.privacy-content p, .privacy-content ul {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.privacy-content ul {
    padding-left: 1.5rem;
}
.privacy-content ul li {
    margin-bottom: 0.5rem;
}
.privacy-content a {
    color: #1e40af;
    text-decoration: underline;
}
.effective-date {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
    text-align: center;
} 

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #f9fafb;
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none; /* Initially hidden */
}

#cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

#cookie-banner p {
    margin: 0;
    flex-grow: 1;
    line-height: 1.6;
}

#cookie-banner p a {
    color: #93c5fd;
    text-decoration: underline;
}

#cookie-banner p a:hover {
    color: #eff6ff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.cookie-buttons .btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
    color: white;
}
.cookie-buttons .btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.cookie-buttons .btn-secondary {
    background-color: #4b5563;
    border-color: #4b5563;
    color: white;
}

.cookie-buttons .btn-secondary:hover {
    background-color: #374151;
    border-color: #374151;
}

@media (max-width: 768px) {
    #cookie-banner .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .cookie-buttons {
        align-self: flex-end;
    }
} 

/* --- Case Studies Page --- */
.case-studies-container { max-width: 900px; margin: 0 auto 4rem; }
.case-study-item { margin-bottom: 4rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 4rem; }
.case-study-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0;}
.case-study-header { text-align: center; margin-bottom: 2rem; }
.business-type { display: inline-block; background-color: #e0e7ff; color: #3730a3; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.case-study-header h2 { margin: 0; font-size: 2.25rem; }
.scenario { text-align: center; font-size: 1.1rem; color: #4a5568; margin-bottom: 2rem; }
.analysis { margin-top: 2rem; background-color: #f8fafc; padding: 1.5rem; border-radius: 8px; border: 1px solid #e2e8f0; }
.analysis h4 { font-size: 1.1rem; margin: 0 0 0.5rem 0; }
.analysis p { font-size: 0.95rem; line-height: 1.6; color: #374151; margin: 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 768px) { .comparison-grid { grid-template-columns: 1fr 1fr; } }
.comparison-box { padding: 1.5rem; border-radius: 12px; border: 2px solid; text-align: left; }
.comparison-box h3 { font-size: 1.25rem; margin: 0 0 1rem 0; }
.comparison-box p { font-size: 1rem; line-height: 1.6; margin: 0; }
.comparison-box.before { border-color: #fecaca; background-color: #fff1f2; }
.comparison-box.before h3 { color: #b91c1c; }
.comparison-box.after { border-color: #bbf7d0; background-color: #f0fdf4; }
.comparison-box.after h3 { color: #15803d; }

/* --- Service Page Hero & CTA --- */
.how-it-works-hero { background-color: #f8fafc; padding: 4rem 1rem; text-align: center; border-bottom: 1px solid #e2e8f0; background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px); background-size: 30px 30px; }
.how-it-works-hero h1 { font-size: 2.75rem; font-weight: 700; margin-top: 0; margin-bottom: 1rem; }
.how-it-works-hero .lead { font-size: 1.25rem; color: #4a5568; max-width: 750px; margin: auto; }

.service-page { padding-top: 4rem; padding-bottom: 4rem; }

.call-to-action { text-align: center; background-color: #f0f9ff; border: 1px solid #bae6fd; padding: 3rem 2rem; border-radius: 12px; max-width: 800px; margin: 4rem auto 0; }
.call-to-action h2 { font-size: 2rem; margin-bottom: 1rem; }
.call-to-action p { margin-bottom: 2rem; font-size: 1.1rem; color: #374151; }
.large-btn { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* --- AI Citation Guide Page --- */
.guide-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.guide-container article section {
    margin-bottom: 3rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
}
.guide-container article section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.guide-container article h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.guide-container article p, .guide-container article li {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}
.pillar {
    display: flex;
    align-items: flex-start;
    margin-top: 1.5rem;
}
.pillar-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.pillar-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
}
.call-to-action-section {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}
.call-to-action-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.call-to-action-section li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem !important;
}
.call-to-action-section li:last-child {
    margin-bottom: 0 !important;
}
.call-to-action-section li::before {
    content: '✓';
    color: #16a34a;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    font-weight: 600;
}
.guide-container ol {
    padding-left: 20px;
}
.guide-container ol li {
    margin-bottom: 1rem;
    font-weight: 500;
} 

/* --- FAQ Page Specific Styles --- */
.faq-page-layout .faq-category-title {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}
.faq-page-layout .faq-category-title:first-of-type {
    margin-top: 0;
}
.faq-page-layout .accordion-item {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    /* Override global style */
    border-bottom: 1px solid #e2e8f0;
}
.faq-page-layout .accordion-header {
    padding: 1.25rem 1.5rem;
    background-color: #fff;
    font-weight: 600;
    color: #1e293b;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}
.faq-page-layout .accordion-header:hover, 
.faq-page-layout .accordion-header.active {
    background-color: #f8fafc;
}
.faq-page-layout .accordion-item.active .accordion-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-page-layout .accordion-content p {
    padding: 1.5rem;
    margin: 0;
    border-top: 1px solid #f1f5f9;
}
.faq-page-layout .accordion-icon {
    color: #4f46e5;
} 

/* --- Login Page --- */
.login-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.error-message ul {
    list-style-position: inside;
    padding-left: 0;
}

/* --- Register Page --- */
.register-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 4rem auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
@media (max-width: 992px) {
    .register-page-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto;
    }
}

.register-info-panel {
    background-color: #f8fafc;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 992px) {
    .register-info-panel {
        padding: 2.5rem;
    }
}

.register-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.register-subheadline {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.benefits-list .benefit-icon {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 700;
}
.benefits-list .benefit-item p {
    margin: 0;
    color: #374151;
}

.register-testimonial {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.register-testimonial .testimonial-text {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
}
.register-testimonial .testimonial-author {
    font-weight: 600;
    color: #1e293b;
}

.register-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.form-wrapper {
    width: 100%;
    max-width: 450px;
}
.form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-wrapper p {
    color: #4a5568;
    margin-bottom: 2rem;
}
.password-requirements {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
#password:focus + .password-requirements {
    max-height: 100px; /* Adjust as needed */
    margin-top: 0.75rem;
}
.password-requirements ul {
    font-size: 0.9rem;
    padding-left: 0;
    list-style: none;
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
}
.terms-agreement {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1.5rem;
} 

/* --- Dashboard --- */
.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}
.dashboard-sidebar {
    background-color: #fff;
    border-right: 1px solid #e2e8f0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.dashboard-sidebar .logo {
    margin-bottom: 2.5rem;
    text-decoration: none;
}
.domain-selector {
    margin-bottom: 2rem;
}
.domain-selector label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: block;
}
.domain-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}
.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}
.dashboard-nav a:hover {
    background-color: #f1f5f9;
}
.dashboard-nav li.active a {
    background-color: #eef2ff;
    color: #4338ca;
    font-weight: 600;
}
.nav-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 1rem 0;
}
.sidebar-footer {
    margin-top: auto;
}
.sidebar-footer .logout-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
}
.sidebar-footer .logout-link:hover {
    background-color: #f8fafc;
}
.sidebar-footer .user-info {
    display: flex;
    flex-direction: column;
}
.sidebar-footer .user-info strong {
    font-size: 0.9rem;
    font-weight: 600;
}
.sidebar-footer .user-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.dashboard-main {
    background-color: #f8fafc;
    padding: 2rem 3rem;
    overflow-y: auto;
}
.dashboard-header {
    margin-bottom: 2rem;
}
.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
}
.dashboard-header p {
    color: #64748b;
    font-size: 1rem;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.dashboard-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dashboard-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.status-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left-width: 4px;
}
.status-card .status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.status-card .status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.4rem;
    position: relative;
    top: -1px;
}
.status-card.status-published .status-icon { background-color: #22c55e; }
.status-card.status-draft .status-icon { background-color: #3b82f6; }
.status-card.status-initial-check .status-icon,
.status-card.status-processing .status-icon { background-color: #f59e0b; }
.status-card.status-error .status-icon { background-color: #ef4444; }

/* Error status styling */
.error-status-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

/* Processing status styling */
.processing-status-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ph-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
}

.ph-alert-info {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.ph-alert-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.ph-alert-icon {
    font-size: 1.1rem;
}

.error-message {
    color: #dc2626;
    font-size: 0.95rem;
    margin: 0;
    padding: 0.75rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    width: 100%;
}

.error-status-actions .btn-primary {
    background-color: #dc2626;
    border-color: #dc2626;
}

.error-status-actions .btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.status-card .website-url {
    font-size: 1.2rem;
    font-weight: 600;
}
.status-card .status-text {
    margin: 0;
    color: #475569;
}
.status-card .status-body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.features-list-2col {
    list-style: none;
    padding: 0;
    columns: 2;
    gap: 1rem;
}
.features-list-2col li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.5rem;
}
.features-list-2col li::before {
    content: '✓';
    color: #16a34a;
    position: absolute;
    left: 0;
}
.contact-info {
    list-style: none;
    padding-left: 0;
}
.contact-info li {
    margin-bottom: 0.5rem;
}
.faq-list .faq-item {
    margin-bottom: 1rem;
}
.faq-list .faq-question {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.faq-list .faq-answer {
    color: #4a5568;
    margin-left: 1.2rem;
}

@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar {
        /* On mobile, could be a top-bar or a hidden drawer */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 1rem;
        min-height: auto;
    }
    .dashboard-sidebar .logo { margin-bottom: 0; }
    .dashboard-nav { display: none; } /* Hide for simplicity */
    .sidebar-footer { display: none; }
    .dashboard-main { padding: 1.5rem; }
}

@media (max-width: 768px) {
    .dashboard-grid-2col {
        grid-template-columns: 1fr;
    }
    .features-list-2col {
        columns: 1;
    }
    .status-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .status-card .status-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f1f5f9;
    }
}

.sidebar-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.sidebar-nav {
    flex-grow: 1;
    padding: 20px 0;
}

/* --- Mobile Hamburger Menu --- */
.mobile-header {
    display: none; /* Hidden on desktop */
    align-items: center;
    margin-bottom: 1.5rem;
}
.hamburger-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    cursor: pointer;
}
.hamburger-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #334155;
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.sidebar-mobile-header {
    display: none; /* Hidden on desktop */
    justify-content: flex-end;
    padding: 0.5rem;
}
.sidebar-close-btn {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #64748b;
}

@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    .mobile-header {
        display: flex;
    }
    .dashboard-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        width: 300px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        /* Ensure it's a column and not a row */
        flex-direction: column; 
        justify-content: flex-start;
        padding: 1.5rem;
    }
    .sidebar-mobile-header {
        display: flex;
    }
    .mobile-sidebar-open .dashboard-sidebar {
        transform: translateX(0);
    }
    .mobile-sidebar-open .sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }
    .dashboard-main { 
        padding: 1.5rem; 
    }
    .dashboard-nav {
        display: block; /* Ensure nav is visible */
    }
}

@media (max-width: 768px) {
    .dashboard-grid-2col {
        grid-template-columns: 1fr;
    }
    .features-list-2col {
        columns: 1;
    }
    .status-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .status-card .status-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f1f5f9;
    }
}

/* --- Profile Page --- */
.profile-page {
    padding-top: 2rem;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}
.profile-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}
.profile-header h1 {
    font-size: 2.25rem;
    margin: 0;
    flex-grow: 1; /* Allows it to take up available space */
}
.profile-website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
}
.ai-notice-box {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.ai-notice-box p {
    margin: 0 0 0.75rem 0;
}
.schema-badge {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0369a1;
}
.profile-section {
    margin-bottom: 2rem;
}
.profile-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.profile-features {
    columns: 2;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    .profile-header h1 {
        font-size: 1.75rem;
        text-align: center;
    }
    .profile-logo {
        width: 100px;
        height: 100px;
    }
    .profile-website-link {
        margin-top: 0;
    }
    .profile-features {
        columns: 1;
    }
}

/* --- Add Website Page --- */
.add-website-container {
    max-width: 700px;
    margin: 2rem auto;
}
.add-website-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}
.add-website-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #eef2ff;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.add-website-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.add-website-description {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.add-website-card .url-input-container {
    max-width: 100%;
}
.input-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .add-website-card {
        padding: 2rem;
    }
}

/* --- Status Check Page --- */
.status-check-page {
    padding: 3rem 0;
    background-color: #f8fafc;
    min-height: calc(100vh - 100px); /* Adjust based on header/footer height */
}
.status-header {
    text-align: center;
    margin-bottom: 2rem;
}
.status-header p {
    color: #4a5568;
    margin-bottom: 0.25rem;
}
.status-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    word-break: break-all;
}
.status-check-card {
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}
.status-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.status-check-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.status-check-card .lead {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #4a5568;
}

/* Status-specific colors */
.status-icon-wrapper.error, .status-check-card.error .status-icon-wrapper { color: #dc2626; background-color: #fee2e2; }
.status-icon-wrapper.processing, .status-check-card.processing .status-icon-wrapper { color: #d97706; background-color: #fef3c7; }
.status-icon-wrapper.complete-success, .status-check-card.complete-success .status-icon-wrapper { color: #16a34a; background-color: #dcfce7; }
.status-icon-wrapper.complete-fail, .status-check-card.complete-fail .status-icon-wrapper { color: #d97706; background-color: #fef3c7; }

/* Error state specific styling */
.status-check-card.error .lead {
    color: #dc2626;
    font-weight: 500;
}

.status-check-card.error .status-actions {
    margin-top: 1.5rem;
}

/* Progress Bar */
.progress-bar-wrapper {
    width: 100%;
    height: 12px;
    background-color: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 6px;
    transition: width 0.5s ease-in-out;
}
.progress-note {
    font-size: 0.9rem;
    color: #64748b;
}

/* Actions */
.status-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}
.status-actions p {
    margin-bottom: 1rem;
    color: #4a5568;
}
.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.bottom-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Analysis Report */
.analysis-report {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px dashed #e2e8f0;
    text-align: left;
}
.analysis-report h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.analysis-report > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}
.report-section {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}
.report-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.report-section.recommendations ul {
    list-style: none;
    padding: 0;
}
.report-section.recommendations li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}
.report-section.recommendations li::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0;
}
.findings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.finding {
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.finding strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1e293b;
}
.finding span {
    color: #4a5568;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .status-check-page {
        padding: 2rem 0;
    }
    .status-check-card {
        padding: 2rem;
    }
    .findings-grid {
        grid-template-columns: 1fr;
    }
}

.status-check-page .report-section.screenshot-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9edf2;
}

/* Professional alert styles for error notice */
.ph-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    box-shadow: 0 1px 4px rgba(220,38,38,0.04);
    margin-bottom: 0;
    width: 100%;
    max-width: 420px;
    justify-content: center;
}
.ph-alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}
.ph-alert-icon {
    font-size: 1.3em;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.ph-btn-retry {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 2.2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    box-shadow: 0 1px 4px rgba(220,38,38,0.04);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.15s, border 0.15s;
}
.ph-btn-retry:hover, .ph-btn-retry:focus {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: #fff;
    outline: none;
}

.ph-btn-reset-mini {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: #374151;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.15s, border 0.15s, color 0.15s;
    margin-left: 0.1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.ph-btn-reset-mini:hover, .ph-btn-reset-mini:focus {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #dc2626;
    outline: none;
}

.ph-btn-reset-mini i {
    color: inherit;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Team Member Modal Styles */
.ph-modal-input {
  width: 100%;
  padding: 0.55em 0.9em;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1em;
  margin-bottom: 1.1em;
  background: #f8fafc;
  transition: border-color 0.2s;
}
.ph-modal-input:focus {
  border-color: #2563eb;
  outline: none;
  background: #fff;
}

.ph-modal-btn {
  width: 100%;
  padding: 0.7em 0;
  background: #075985;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.2em;
  transition: background 0.2s;
}
.ph-modal-btn:hover, .ph-modal-btn:focus {
  background: #0e7490;
}

.ph-password-strength {
  font-size: 0.97em;
  margin-bottom: 1em;
  min-height: 1.2em;
  color: #888;
  transition: color 0.2s;
}

/* Team & Access Professional Styles */
.ph-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 2rem 2.2rem 1.5rem 2.2rem;
  margin-bottom: 2rem;
}
.ph-label {
  font-weight: 600;
  color: #222;
  margin-right: 0.3em;
}
.ph-value {
  font-weight: 400;
  color: #222;
}
.ph-icon-btn {
  background: none;
  border: none;
  color: #a78bfa;
  cursor: pointer;
  font-size: 1.1em;
  margin-left: 0.3em;
  transition: color 0.18s;
  vertical-align: middle;
}
.ph-icon-btn:hover {
  color: #7c3aed;
}
.ph-chip {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 16px;
  padding: 0.18em 0.85em 0.18em 0.7em;
  font-size: 0.98em;
  margin-right: 0.5em;
  margin-bottom: 0.3em;
  color: #222;
  border: 1px solid #e5e7eb;
}
.ph-chip .ph-icon-btn {
  margin-left: 0.4em;
  font-size: 1em;
  color: #dc2626;
}
.ph-chip .ph-icon-btn.add {
  color: #16a34a;
}
.ph-chip .ph-icon-btn.add:hover {
  color: #059669;
}
.ph-chip .ph-icon-btn.remove:hover {
  color: #b91c1c;
}
.ph-muted {
  color: #888;
  font-size: 0.97em;
}
.ph-team-member {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 1.2em;
  margin-bottom: 1.2em;
}
.ph-team-member:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ph-team-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2em;
}
.ph-team-info {
  flex: 1;
}
.ph-team-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7em;
}