/* ===========================
   WAGEFLOW LANDING PAGE STYLES
   Light blue theme with professional accents
=========================== */

:root {
    --primary: #0ea5e9; /* Light blue primary */
    --primary-dark: #0284c7;
    --primary-light: #7dd3fc;
    --secondary: #0f172a;
    --accent: #06b6d4; /* Cyan accent */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --muted: #64748b;
    --bg-main: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.9);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 40px 80px rgba(14, 165, 233, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--secondary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Navigation */
header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

/* Views */
.view {
    display: none;
    min-height: calc(100vh - 100px);
    animation: viewFade 0.6s ease forwards;
}

.view.active {
    display: block;
}

@keyframes viewFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Sections */
.page-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content {
    flex: 1;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.metric-title {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.floating-badge {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.badge-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 2s;
}

/* Trusted Companies */
.trusted-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.trusted-section .section-header h3 {
    font-size: 20px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 40px;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-logo {
    padding: 15px 30px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--muted);
    transition: var(--transition);
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: var(--primary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.featured .price, 
.pricing-card.featured .pricing-features li,
.pricing-card.featured .pricing-title {
    color: white;
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary);
}

.price {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--secondary);
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-faq {
    margin-top: 100px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.faq-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.9;
}

.mission-card p {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.team-member {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
}

/* Forms */
.form-section {
    max-width: 500px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

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

.form-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--muted);
    font-size: 16px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Login Form */
.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 80px auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.login-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.login-hero h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.login-hero p {
    opacity: 0.9;
    line-height: 1.6;
}

.login-form {
    padding: 60px;
}

.role-selector {
    margin-bottom: 40px;
}

.role-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.role-btn {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.role-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.role-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.forgot-password {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.3);
}

/* Features Page Specific */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 100px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.showcase-visual {
    position: relative;
    height: 400px;
}

.visual-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.screen-header {
    height: 40px;
    background: #0f172a;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.screen-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.screen-dot.red { background: var(--danger); }
.screen-dot.yellow { background: var(--warning); }
.screen-dot.green { background: var(--success); }

.screen-content {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.screen-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.screen-item:nth-child(1) { grid-column: 1 / 3; }

/* Resources Page Specific */
.resources-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    border: 1px solid var(--glass-border);
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover, .category-card.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.category-card.active .category-icon {
    background: rgba(255, 255, 255, 0.3);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.resource-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.resource-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    position: relative;
    overflow: hidden;
}

.resource-type {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.resource-content {
    padding: 30px;
}

.resource-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.resource-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: var(--muted);
}

.resource-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 60px;
    color: white;
    text-align: center;
    margin-top: 80px;
    box-shadow: var(--shadow-lg);
}

.newsletter-form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: none;
    font-size: 16px;
}

/* Footer */
.landing-footer {
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 80px;
    background: white;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted);
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero, .about-grid, .feature-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-actions, .hero-stats {
        justify-content: center;
    }

    .hero-visual, .showcase-visual {
        height: 400px;
    }

    .login-container {
        grid-template-columns: 1fr;
    }

    .login-hero {
        padding: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }

    nav {
        display: none;
    }

    .page-section, .hero {
        padding: 60px 24px;
    }

    .section-header h2, .hero-content h1 {
        font-size: 36px;
    }

    .pricing-grid, .features-grid, .resources-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }

    .feature-showcase, .newsletter-section, .mission-card {
        padding: 40px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .role-options {
        grid-template-columns: 1fr;
    }

    .features-tabs, .resources-categories {
        flex-direction: column;
        align-items: center;
    }

    .feature-tab, .category-card {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}