/*
Theme Name: SeenSecure Landing
Theme URI: https://seensecure.com
Author: SeenSecure Team
Author URI: https://seensecure.com
Description: Landing design for SeenSecure website with corporate colors and no gradients.

License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seensecure
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
}

:root {
    --primary: #0b5fa5;
    --primary-dark: #084e8a;
    --primary-light: #e2effa;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --surface: #ffffff;
    --bg: #f8fafc;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.logo span {
    color: #0b5fa5;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0b5fa5;
}

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

.user-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.welcome-text {
    font-size: 0.875rem;
    color: #64748b;
    text-align: right;
    white-space: nowrap;
}

.user-menu .btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #0b5fa5;
    color: white;
    box-shadow: 0 2px 8px rgba(11,95,165,0.18);
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.btn-primary:hover {
    background: #084e8a;
    color: white;
    box-shadow: 0 6px 18px rgba(11,95,165,0.25);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #0b5fa5;
    border: 1.5px solid #0b5fa5;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}

.btn-outline:hover {
    background: #e2effa;
    color: #084e8a;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Hero Section */
.hero {
    background: #0b5fa5;
    color: white;
    padding: 4.5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: white;
    padding: 0;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.pricing-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11,95,165,0.13);
}

.pricing-card.featured {
    border: 2px solid #0b5fa5;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #0b5fa5;
    color: white;
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.plan-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card.featured .plan-header {
    background: #e2effa;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #0b5fa5;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: normal;
}

.plan-description {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.features {
    padding: 1.5rem 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.features h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features h4:first-child {
    margin-top: 0;
}

.features ul {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.features li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.features li:before {
    margin-right: 0.5rem;
}

.plan-footer {
    padding: 1.5rem 2rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.comparison-table {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #f8fafc;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

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

.comparison-table .check {
    color: #16a34a;
    font-weight: bold;
}

.comparison-table .cross {
    color: #dc2626;
    font-weight: bold;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0b5fa5;
    box-shadow: 0 0 0 3px rgba(11, 95, 165, 0.12);
}

.btn-submit {
    background: #0b5fa5;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(11,95,165,0.2);
}

.btn-submit:hover {
    background: #084e8a;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(11,95,165,0.25);
}

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

.anim-fade-up {
    animation: fadeUp 0.5s ease both;
}

/* Card global hover effect */
.card-hover {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,95,165,0.11);
}

/* Footer */
footer {
    background: #0d1b2a;
    color: white;
    padding: 3.5rem 0 1.25rem;
}

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

.footer-section .footer-h {
    margin-bottom: 1rem;
    color: #e2effa;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.18s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #e2effa;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 220px;
}

.footer-logo {
    height: 34px;
    width: auto;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid #1e3352;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-bottom a:hover {
    color: #e2effa;
}

/* Utility */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

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

/* Section titles */
.section-title {
    font-size: 2rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-lead {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .user-menu {
        align-items: center;
        text-align: center;
    }
    
    .welcome-text {
        font-size: 0.75rem;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }
    
    .user-menu .btn {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}
