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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c7af2;
}

.logo-full {
    height: 40px;
    width: auto;
}

.logo-mobile {
    height: 40px;
    width: auto;
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1c7af2;
}

.cta-button {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 122, 242, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #1c7af2;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 122, 242, 0.3);
}

.btn-secondary {
    background: white;
    color: #1c7af2;
    padding: 1rem 2rem;
    border: 2px solid #1c7af2;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1c7af2;
    color: white;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 500;
}

.cert-badge i {
    color: #10b981;
}

/* Platform Demo Section */
.platform-demo-section {
    padding: 80px 0;
    background: white;
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-header h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.demo-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.demo-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    overflow: hidden;
}

.browser-frame {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-header {
    background: #f1f5f9;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-url {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #666;
    flex: 1;
}

.dashboard-content {
    padding: 1.5rem;
    overflow: visible;
}

.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow: visible;
}

.kanban-column {
    overflow: visible;
    padding: 0.25rem;
}

.kanban-column h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.email-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.email-card:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #1c7af2;
}

.email-card.completed {
    opacity: 0.7;
}

.email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.sender {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
}

.email-subject {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    overflow: hidden;
}

.assigned {
    color: #1c7af2;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.priority {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

.priority.high { background: #fee2e2; color: #dc2626; }
.priority.medium { background: #fef3c7; color: #d97706; }
.priority.low { background: #dcfce7; color: #16a34a; }

/* Platform Flow */
.platform-flow-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e5e7eb;
}

.platform-flow-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    max-width: 200px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.flow-icon:hover {
    transform: translateY(-3px);
}

.flow-icon.client {
    background: linear-gradient(135deg, #10b981, #059669);
}

.flow-icon.platform {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
}

.flow-icon.staff {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.flow-step h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.flow-step p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.flow-arrow-horizontal {
    color: #cbd5e1;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f9fafb;
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: stretch;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.problem-card i {
    font-size: 3rem;
    color: #e63d37;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.problem-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.problem-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.solution-feature i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.solution-feature h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Workflow Diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Workflow List (Vertical) */
.workflow-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.workflow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.workflow-list .workflow-step {
    text-align: left;
}

.workflow-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.workflow-list .step-number {
    margin: 0;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: #666;
}

/* User Types Section */
.user-types-section {
    padding: 80px 0;
    background: #f9fafb;
}

.user-types-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.user-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.user-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.user-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.user-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.user-icon i {
    font-size: 1.5rem;
    color: white;
}

.user-type-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.user-type-card p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.feature-list i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: white;
}

.use-cases-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: #1c7af2;
    box-shadow: 0 10px 30px rgba(28, 122, 242, 0.1);
}

.use-case-card:last-child {
    grid-column: 1 / -1;
    max-width: none;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.use-case-icon i {
    color: white;
    font-size: 1.25rem;
}

.use-case-subtitle {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.use-case-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1rem;
}

.use-case-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.use-case-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.benefit-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.security-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.security-section .section-subtitle {
    color: #cbd5e1;
    text-align: center;
}

.security-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.security-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.security-feature i {
    font-size: 1.5rem;
    color: #1c7af2;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.security-feature h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.security-feature p {
    color: #cbd5e1;
}

.security-certifications h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.cert-card i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.cert-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f9fafb;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 2.5rem;
    color: #1c7af2;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.125rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #1c7af2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 122, 242, 0.1);
}

.pricing-card.featured {
    border-color: #1c7af2;
    border-width: 3px;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 122, 242, 0.25);
    position: relative;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    color: #666;
    font-size: 1rem;
}

.pricing-description {
    margin-bottom: 2rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 122, 242, 0.3);
}

.pricing-card.enterprise .btn-pricing {
    background: #1a1a1a;
}

.pricing-card.enterprise-compact {
    max-width: 280px;
    margin: 0 auto;
}

.pricing-card.enterprise-compact .pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-card.enterprise-compact .pricing-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-compact {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    background: #1a1a1a;
}

.btn-compact:hover {
    background: #333;
}

.pricing-faq {
    text-align: center;
    color: #666;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: #1c7af2;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #1c7af2;
    width: 24px;
    text-align: center;
}

.contact-method h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c7af2;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 122, 242, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-certifications span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #cbd5e1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

.footer-column a:hover {
    color: #1c7af2;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #cbd5e1;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #1c7af2;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .problems-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .problems-grid .problem-card:nth-child(4),
    .problems-grid .problem-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .problems-grid .problem-card:nth-child(4) {
        grid-column-start: 2;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid .problem-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .logo-full {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    /* Pricing Section Mobile Responsiveness */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 420px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-card.featured {
        transform: none !important;
        margin: 0 auto;
        border-width: 2px !important;
        box-shadow: 0 8px 25px rgba(28, 122, 242, 0.2) !important;
        position: static !important;
        z-index: auto !important;
        max-width: 420px;
        width: 100% !important;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Enterprise Banner Mobile */
    .enterprise-banner {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .enterprise-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .enterprise-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .enterprise-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .enterprise-pricing {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .enterprise-price {
        font-size: 1.125rem;
    }
    
    .btn-enterprise {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .kanban-board {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-flow-horizontal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .flow-arrow-horizontal {
        transform: rotate(90deg);
        font-size: 1.25rem;
    }
    
    .flow-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .flow-step h4 {
        font-size: 1rem;
    }
    
    .flow-step p {
        font-size: 0.8rem;
    }

    /* Email interface mobile improvements */
    .email-header-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.75rem;
    }
    
    .account-selector {
        width: 100%;
    }
    
    .account-dropdown {
        width: 100%;
        min-width: auto;
    }
    
    .delegation-info {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .view-toggle {
        justify-content: center;
        width: 100%;
    }
    
    .toggle-btn {
        flex: 1;
        max-width: 120px;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Email list mobile improvements */
    .email-row {
        grid-template-columns: 25px 25px 1fr 60px;
        gap: 0.5rem;
        padding: 0.75rem 0.5rem;
    }
    
    .email-sender {
        display: none; /* Hide sender on mobile to save space */
    }
    
    .email-subject {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        width: 100%;
        min-width: 0;
    }
    
    .subject-text {
        font-size: 0.8rem;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.3;
        width: 100%;
        word-wrap: break-word;
    }
    
    .email-date {
        font-size: 0.7rem;
    }

    /* Kanban mobile improvements */
    .kanban-board-new {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .kanban-board-new.hidden {
        display: none !important;
    }
    
    .kanban-board-new.active {
        display: flex;
    }
    
    .kanban-column-new {
        background: #f8fafc;
        border-radius: 8px;
        padding: 1rem;
        min-height: 200px;
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .kanban-column-new h4 {
        margin-bottom: 1rem;
        color: #1a1a1a;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: center;
    }
    
    .email-card-new {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 0.75rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .email-card-new:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #1c7af2;
    }
    
    .email-card-new.completed {
        opacity: 0.7;
        background: #f9fafb;
    }
    
    .email-header-new {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    
    .email-header-new .sender {
        font-weight: 500;
        font-size: 0.875rem;
        color: #1a1a1a;
    }
    
    .email-header-new .time {
        font-size: 0.75rem;
        color: #666;
    }
    
    .email-subject-new {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        color: #1a1a1a;
        line-height: 1.3;
    }
    
    .email-meta-new {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .email-meta-new .assigned {
        background: #e0f2fe;
        color: #0369a1;
        padding: 0.125rem 0.5rem;
        border-radius: 12px;
        font-weight: 500;
    }
    
    .email-meta-new .unassigned {
        background: #fef3c7;
        color: #d97706;
        padding: 0.125rem 0.5rem;
        border-radius: 12px;
        font-weight: 500;
    }
    
    .email-meta-new .status {
        background: #dcfce7;
        color: #16a34a;
        padding: 0.125rem 0.5rem;
        border-radius: 12px;
        font-weight: 500;
    }
    
    .email-meta-new .priority {
        padding: 0.125rem 0.5rem;
        border-radius: 12px;
        font-weight: 500;
    }
    
    .email-meta-new .priority.high {
        background: #fee2e2;
        color: #dc2626;
    }
    
    .email-meta-new .priority.medium {
        background: #fef3c7;
        color: #d97706;
    }
    
    .email-meta-new .priority.low {
        background: #dcfce7;
        color: #16a34a;
    }

    /* Add scrollbar styling for better UX */
    .kanban-board-new::-webkit-scrollbar {
        height: 8px;
    }
    
    .kanban-board-new::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }
    
    .kanban-board-new::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }
    
    .kanban-board-new::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Extra small screens pricing adjustments */
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        padding: 1.75rem 1.25rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto 1rem auto;
        min-height: auto;
    }
    
    .pricing-card h3 {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .currency {
        font-size: 1rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
    }
    
    .btn-pricing {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Enterprise Banner Extra Small */
    .enterprise-banner {
        padding: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .enterprise-text h3 {
        font-size: 1.25rem;
    }
    
    .enterprise-text p {
        font-size: 0.85rem;
    }
    
    .enterprise-price {
        font-size: 1rem;
    }
    
    .btn-enterprise {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Featured card width fix for small screens */
    .pricing-card.featured {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto 1rem auto !important;
        padding: 1.75rem 1.25rem !important;
    }
    
    .kanban-board {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* Ensure all problem cards have consistent width on mobile */
    .problem-card {
        max-width: 100%;
        width: 100%;
    }

    /* Email interface ultra-mobile improvements */
    .email-header-bar {
        padding: 0.75rem 0.5rem;
        gap: 0.75rem;
    }
    
    .account-dropdown {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    .toggle-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .toggle-btn i {
        margin-right: 0.25rem;
    }
    
    .email-row {
        grid-template-columns: 20px 20px 1fr 50px;
        padding: 0.5rem 0.25rem;
        gap: 0.25rem;
    }
    
    .email-list {
        max-height: 250px;
    }
}

/* Additional breakpoint for medium-small screens */
@media (max-width: 640px) and (min-width: 481px) {
    .pricing-grid {
        gap: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .pricing-card {
        max-width: 380px;
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        max-width: 380px !important;
    }
}

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

.hero-text,
.problem-card,
.solution-feature,
.user-type-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Email Interface */
.email-interface {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.email-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.email-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: #f1f5f9;
    border-color: #1c7af2;
    color: #1c7af2;
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
}

.toggle-btn {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: #1c7af2;
    border-color: #1c7af2;
    color: white;
}

.email-list {
    max-height: 300px;
    overflow-y: auto;
}

.email-row {
    display: grid;
    grid-template-columns: 30px 30px 120px 1fr 80px 60px;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    gap: 0.75rem;
}

.email-row:hover {
    background: #f8fafc;
}

.email-row.completed {
    opacity: 0.6;
    background: #f9fafb;
}

.email-checkbox input {
    margin: 0;
    cursor: pointer;
}

.email-star {
    color: #fbbf24;
    cursor: pointer;
}

.email-star .far {
    color: #d1d5db;
}

.email-sender {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-subject {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.subject-text {
    font-size: 0.875rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.delegation-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.unassigned-badge {
    background: #fef3c7;
    color: #d97706;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.priority-badge {
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.priority-badge.high {
    background: #fee2e2;
    color: #dc2626;
}

.priority-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

.priority-badge.low {
    background: #dcfce7;
    color: #16a34a;
}

.email-date {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
}

.email-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.email-row:hover .email-actions {
    opacity: 1;
}

.action-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.action-btn:hover {
    background: #f1f5f9;
    color: #1c7af2;
}

.account-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-dropdown {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
    min-width: 200px;
}

.delegation-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    background: #e0f2fe;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.delegation-info i {
    color: #1c7af2;
}

.email-view {
    display: none;
}

.email-view.active {
    display: block;
}

.assigned-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Desktop Kanban View */
@media (min-width: 769px) {
    .kanban-board-new.active {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
        flex-direction: initial !important;
        padding: 1rem !important;
    }
    
    .kanban-column-new {
        min-width: auto !important;
        max-width: none !important;
        width: auto !important;
        flex-shrink: initial !important;
        scroll-snap-align: none !important;
        background: #f8fafc;
        border-radius: 8px;
        padding: 1rem;
        min-height: 200px;
    }
}

/* Mobile Kanban scroll indicator */
@media (max-width: 768px) {
    .kanban-board-new::after {
        content: "← Swipe to see more →";
        position: absolute;
        bottom: 0.5rem;
        right: 1rem;
        background: rgba(28, 122, 242, 0.9);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 500;
        pointer-events: none;
        opacity: 0.8;
        animation: fadeInOut 3s ease-in-out;
    }
    
    .email-interface {
        position: relative;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
     20%, 80% { opacity: 0.8; }
}

/* Kanban View Base Styles */
.kanban-board-new {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.kanban-board-new.hidden {
    display: none !important;
}

.kanban-board-new.active {
    display: flex;
}

.kanban-column-new {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    min-height: 200px;
    min-width: 280px;
    max-width: 280px;
    width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.kanban-column-new h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.email-card-new {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.email-card-new:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #1c7af2;
}

.email-card-new.completed {
    opacity: 0.7;
    background: #f9fafb;
}

.email-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.email-header-new .sender {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.email-header-new .time {
    font-size: 0.75rem;
    color: #666;
}

.email-subject-new {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.email-meta-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    gap: 0.5rem;
}

.email-meta-new .assigned {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.email-meta-new .unassigned {
    background: #fef3c7;
    color: #d97706;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.email-meta-new .status {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.email-meta-new .priority {
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.email-meta-new .priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.email-meta-new .priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.email-meta-new .priority.low {
    background: #dcfce7;
    color: #16a34a;
}

/* Add scrollbar styling for better UX */
.kanban-board-new::-webkit-scrollbar {
    height: 8px;
}

.kanban-board-new::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.kanban-board-new::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.kanban-board-new::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Enterprise Banner */
.enterprise-banner {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.enterprise-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.enterprise-text {
    flex: 1;
    color: white;
}

.enterprise-text h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.enterprise-text p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.enterprise-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.enterprise-price {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-enterprise {
    background: white;
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-enterprise:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Marketing system form styling */
.box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.box-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.box-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.box-body {
    padding: 1.5rem;
}

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

.callout {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    text-transform: capitalize;
}

.required {
    color: #ef4444;
}

.pull-right {
    text-align: right;
}

.btn-flat {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-flat:hover {
    background: #2563eb;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobile responsive for marketing form */
@media (max-width: 768px) {
    .box-body {
        padding: 1rem;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .form-row .form-group {
        flex: none !important;
    }
}

/* Thank You Modal */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.thank-you-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thank-you-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.thank-you-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2rem;
    text-align: center;
}

.thank-you-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.thank-you-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.thank-you-body {
    padding: 2rem;
    text-align: center;
}

.thank-you-body p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.thank-you-body p:last-of-type {
    margin-bottom: 2rem;
}

.thank-you-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1c7af2;
    font-weight: 500;
}

.contact-item i {
    font-size: 1rem;
}

.thank-you-footer {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.btn-linkedin {
    background: #0077b5;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.3);
    color: white;
}

.btn-linkedin i {
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive for thank you modal */
@media (max-width: 768px) {
    .thank-you-modal {
        padding: 1rem;
    }
    
    .thank-you-header {
        padding: 1.5rem;
    }
    
    .thank-you-header i {
        font-size: 2.5rem;
    }
    
    .thank-you-header h2 {
        font-size: 1.5rem;
    }
    
    .thank-you-body {
        padding: 1.5rem;
    }
    
    .thank-you-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thank-you-footer {
        padding: 1rem 1.5rem;
    }
    
    .btn-linkedin {
        width: 100%;
        justify-content: center;
    }
}

/* Integrations Modal */
.integrations-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.integrations-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.integrations-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

.integrations-header {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 2rem;
    text-align: center;
}

.integrations-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.integrations-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.integrations-header p {
    margin: 0;
    font-size: 1.125rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.integrations-body {
    padding: 2rem;
}

.integration-categories {
    margin-bottom: 3rem;
}

.integration-category {
    margin-bottom: 2.5rem;
}

.integration-category h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.integration-category h3 i {
    color: #1c7af2;
    font-size: 1.125rem;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.provider-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.provider-item:hover {
    border-color: #1c7af2;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 122, 242, 0.15);
}

.provider-item i {
    font-size: 1.5rem;
    color: #1c7af2;
}

.provider-item span {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.875rem;
}

.integration-features h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.integrations-footer {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-close-integrations {
    background: #6b7280;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-close-integrations:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.3);
}

.btn-demo {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 122, 242, 0.3);
    color: white;
}

/* Mobile responsive for integrations modal */
@media (max-width: 768px) {
    .integrations-modal {
        padding: 1rem;
    }
    
    .integrations-content {
        max-height: 95vh;
    }
    
    .integrations-header {
        padding: 1.5rem;
    }
    
    .integrations-header i {
        font-size: 2.5rem;
    }
    
    .integrations-header h2 {
        font-size: 1.5rem;
    }
    
    .integrations-header p {
        font-size: 1rem;
    }
    
    .integrations-body {
        padding: 1.5rem;
    }
    
    .provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.75rem;
    }
    
    .provider-item {
        padding: 0.75rem;
    }
    
    .provider-item i {
        font-size: 1.25rem;
    }
    
    .provider-item span {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .integration-category h3 {
        font-size: 1rem;
    }
    
    .integration-features h3 {
        font-size: 1rem;
    }
    
    .integrations-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-close-integrations,
    .btn-demo {
        width: 100%;
    }
}

/* About Modal */
.about-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.about-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.about-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

.about-header {
    background: linear-gradient(135deg, #1c7af2, #671ed1);
    color: white;
    padding: 2rem;
    text-align: center;
}

.about-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.about-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-body {
    padding: 2rem;
}

.about-section {
    margin-bottom: 2rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.company-values {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-item i {
    color: #1c7af2;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.value-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.value-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.brand-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: #1c7af2;
    box-shadow: 0 4px 12px rgba(28, 122, 242, 0.1);
}

.brand-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brand-item h5 {
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
}

.brand-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.4;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-badge i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-detail i {
    color: #1c7af2;
    font-size: 1.1rem;
}

.contact-detail span {
    color: #1a1a1a;
    font-weight: 500;
}

.about-footer {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-close-about {
    background: #6b7280;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-close-about:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.3);
}

/* Mobile responsive for about modal */
@media (max-width: 768px) {
    .about-modal {
        padding: 1rem;
    }
    
    .about-header {
        padding: 1.5rem;
    }
    
    .about-header i {
        font-size: 2.5rem;
    }
    
    .about-header h2 {
        font-size: 1.5rem;
    }
    
    .about-body {
        padding: 1.5rem;
    }
    
    .company-values {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .brand-item {
        padding: 0.75rem;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .about-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-close-about,
    .btn-demo {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Help Modal Styles */
.help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.help-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.help-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.help-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.help-header i {
    font-size: 3rem;
    color: #1c7af2;
    margin-bottom: 1rem;
}

.help-header h2 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.help-header p {
    color: #666;
    margin-bottom: 0;
}

.help-body {
    padding: 2rem;
}

.help-section {
    margin-bottom: 2rem;
}

.help-section:last-child {
    margin-bottom: 0;
}

.help-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.help-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.support-options {
    display: grid;
    gap: 1.5rem;
}

.support-option {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.support-option i {
    font-size: 1.5rem;
    color: #1c7af2;
    margin-top: 0.25rem;
}

.support-option h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.support-option p {
    margin-bottom: 0.5rem;
    color: #666;
}

.support-detail {
    font-weight: 600;
    color: #1c7af2 !important;
}

.support-hours {
    font-size: 0.875rem;
    color: #666 !important;
    font-style: italic;
}

.btn-support {
    display: inline-block;
    background: #1c7af2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-support:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 122, 242, 0.3);
}

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

.department-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 500;
}

.department-item i {
    color: #1c7af2;
    font-size: 1.25rem;
}

.help-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.btn-close-help {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-help:hover {
    background: #4b5563;
}

/* Documentation Modal Styles */
.documentation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.documentation-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.documentation-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.documentation-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.documentation-header i {
    font-size: 3rem;
    color: #1c7af2;
    margin-bottom: 1rem;
}

.documentation-header h2 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.documentation-header p {
    color: #666;
    margin-bottom: 0;
}

.documentation-body {
    padding: 2rem;
}

.documentation-section {
    margin-bottom: 2rem;
}

.documentation-section:last-child {
    margin-bottom: 0;
}

.coming-soon-notice {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.coming-soon-notice i {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.coming-soon-notice h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.coming-soon-notice p {
    color: #666;
    margin-bottom: 0;
}

.documentation-preview h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.documentation-list {
    list-style: none;
    padding: 0;
}

.documentation-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #666;
}

.documentation-list i {
    color: #10b981;
}

.member-access {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 12px;
}

.member-access i {
    font-size: 2.5rem;
    color: #d97706;
    margin-bottom: 1rem;
}

.member-access h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.member-access p {
    color: #666;
    margin-bottom: 1.5rem;
}

.member-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #d97706;
}

.benefit-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
}

.documentation-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-close-documentation {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-documentation:hover {
    background: #4b5563;
}

/* API Modal Styles */
.api-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.api-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.api-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.api-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.api-header i {
    font-size: 3rem;
    color: #1c7af2;
    margin-bottom: 1rem;
}

.api-header h2 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.api-header p {
    color: #666;
    margin-bottom: 0;
}

.api-body {
    padding: 2rem;
}

.api-section {
    margin-bottom: 2rem;
}

.api-section:last-child {
    margin-bottom: 0;
}

.api-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.api-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.api-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.api-feature i {
    font-size: 1.5rem;
    color: #1c7af2;
    margin-top: 0.25rem;
}

.api-feature h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.api-feature p {
    margin-bottom: 0;
    color: #666;
}

.api-endpoints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.endpoint-category {
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.endpoint-category h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.endpoint-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.endpoint-category li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f3f4f6;
}

.endpoint-category li:last-child {
    border-bottom: none;
}

.api-contact {
    margin-top: 2rem;
}

.contact-api {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 12px;
}

.contact-api i {
    font-size: 2.5rem;
    color: #1c7af2;
    margin-bottom: 1rem;
}

.contact-api h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-api p {
    color: #666;
    margin-bottom: 1rem;
}

.api-contact-methods p {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.api-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-close-api {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-api:hover {
    background: #4b5563;
}

/* Status Modal Styles */
.status-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.status-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.status-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.status-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.status-header i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.status-header h2 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.status-header p {
    color: #666;
    margin-bottom: 0;
}

.status-body {
    padding: 2rem;
}

.status-overview {
    text-align: center;
    margin-bottom: 2rem;
}

.overall-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 12px;
}

.status-indicator {
    font-size: 2rem;
}

.status-indicator.operational {
    color: #10b981;
}

.status-indicator.degraded {
    color: #f59e0b;
}

.status-indicator.outage {
    color: #ef4444;
}

.status-text h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.status-text p {
    color: #666;
    margin-bottom: 0;
}

.services-status h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-list {
    display: grid;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-info i {
    color: #666;
    font-size: 1.125rem;
}

.service-name {
    font-weight: 500;
    color: #1a1a1a;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.operational {
    background: #dcfce7;
    color: #166534;
}

.status-badge.degraded {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.outage {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge i {
    font-size: 0.875rem;
}

.uptime-stats {
    margin-top: 2rem;
}

.uptime-stats h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.uptime-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.uptime-value {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.uptime-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.status-footer-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.status-footer-info p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.status-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-close-status {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-status:hover {
    background: #4b5563;
}

.btn-refresh-status {
    background: #1c7af2;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refresh-status:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Mobile Responsive Styles for New Modals */
@media (max-width: 768px) {
    .help-modal,
    .documentation-modal,
    .api-modal,
    .status-modal {
        padding: 1rem;
    }
    
    .help-content,
    .documentation-content,
    .api-content,
    .status-content {
        width: 100%;
        max-height: 95vh;
    }
    
    .help-header,
    .documentation-header,
    .api-header,
    .status-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .help-header i,
    .documentation-header i,
    .api-header i,
    .status-header i {
        font-size: 2.5rem;
    }
    
    .help-header h2,
    .documentation-header h2,
    .api-header h2,
    .status-header h2 {
        font-size: 1.5rem;
    }
    
    .help-body,
    .documentation-body,
    .api-body,
    .status-body {
        padding: 1.5rem 1rem;
    }
    
    .support-options {
        gap: 1rem;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .api-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .api-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .api-endpoints {
        grid-template-columns: 1fr;
    }
    
    .overall-status {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .uptime-grid {
        grid-template-columns: 1fr;
    }
    
    .help-footer,
    .documentation-footer,
    .api-footer,
    .status-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-close-help,
    .btn-close-documentation,
    .btn-close-api,
    .btn-close-status,
    .btn-refresh-status,
    .btn-demo {
        width: 100%;
    }
    
    .member-benefits {
        gap: 1rem;
    }
}

/* Careers Modal Styles */
.careers-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.careers-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.careers-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.careers-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.careers-header i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.careers-header h2 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
}

.careers-header p {
    margin: 0;
    color: #6b7280;
    font-size: 1.1rem;
}

.careers-body {
    padding: 2rem;
}

.careers-section {
    margin-bottom: 2rem;
}

.careers-section:last-child {
    margin-bottom: 0;
}

.careers-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.careers-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.careers-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.career-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.career-highlight i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.career-highlight h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.career-highlight p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.opportunity-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.opportunity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border: 1px solid #bae6fd;
}

.opportunity-item i {
    color: #0284c7;
    font-size: 1.25rem;
}

.opportunity-item span {
    color: #0c4a6e;
    font-weight: 500;
}

.careers-contact {
    margin-top: 2rem;
}

.contact-careers {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.contact-careers i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white;
}

.contact-careers h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: white;
}

.contact-careers p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    color: white;
}

.careers-contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: white;
}

.careers-contact-info a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.careers-contact-info a:hover {
    text-decoration: underline;
    color: #f59e0b;
}

.careers-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.btn-close-careers {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-close-careers:hover {
    background: #4b5563;
}

/* Press Modal Styles */
.press-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.press-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.press-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.press-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.press-header i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.press-header h2 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
}

.press-header p {
    margin: 0;
    color: #6b7280;
    font-size: 1.1rem;
}

.press-body {
    padding: 2rem;
}

.press-section {
    margin-bottom: 2rem;
}

.press-section:last-child {
    margin-bottom: 0;
}

.press-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
}

.press-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.press-topics {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.press-topic {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.press-topic i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.press-topic h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.press-topic p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.company-facts {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.fact-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
}

.fact-item strong {
    color: #1f2937;
}

.press-materials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

.material-item i {
    color: #b91c1c;
    font-size: 1.25rem;
}

.material-item span {
    color: #7f1d1d;
    font-weight: 500;
}

.press-contact {
    margin-top: 2rem;
}

.contact-press {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 12px;
    color: white;
}

.contact-press i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-press h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.contact-press p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.press-contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.press-contact-info a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.press-contact-info a:hover {
    text-decoration: underline;
}

.press-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.btn-close-press {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-close-press:hover {
    background: #4b5563;
}

@media (max-width: 768px) {
    .careers-modal,
    .press-modal {
        padding: 1rem;
    }

    .careers-content,
    .press-content {
        width: 95%;
        max-height: 95vh;
    }

    .careers-header,
    .press-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .careers-header i,
    .press-header i {
        font-size: 2.5rem;
    }

    .careers-header h2,
    .press-header h2 {
        font-size: 1.5rem;
    }

    .careers-body,
    .press-body {
        padding: 1.5rem;
    }

    .careers-info {
        gap: 1rem;
    }

    .career-highlight,
    .press-topic {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .opportunity-areas,
    .press-materials {
        grid-template-columns: 1fr;
    }

    .careers-footer,
    .press-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .btn-close-careers,
    .btn-close-press,
    .btn-demo {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Privacy Modal Styles */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.privacy-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.privacy-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.privacy-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.privacy-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.privacy-header h2 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.privacy-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.privacy-body {
    padding: 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.privacy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.privacy-highlight i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.privacy-highlight h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.privacy-highlight p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.terms-overview {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.terms-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.terms-item i {
    color: #22c55e;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.terms-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.terms-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.cookie-types {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-type {
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

.cookie-type h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-type h4 i {
    color: #f59e0b;
}

.cookie-type p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f3e8ff;
    border-radius: 8px;
    border: 1px solid #d8b4fe;
}

.right-item i {
    color: #8b5cf6;
    font-size: 1.25rem;
}

.right-item span {
    color: #581c87;
    font-weight: 500;
    font-size: 0.9rem;
}

.privacy-contact {
    margin-top: 2rem;
}

.contact-privacy {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 12px;
    color: white;
}

.contact-privacy i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-privacy h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: white;
}

.contact-privacy p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    color: white;
}

.privacy-contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: white;
}

.privacy-contact-info a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.privacy-contact-info a:hover {
    text-decoration: underline;
    color: #f59e0b;
}

.privacy-links {
    margin-top: 2rem;
}

.full-policy-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.full-policy-link i {
    color: #3b82f6;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.full-policy-link h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.25rem;
}

.full-policy-link p {
    margin: 0 0 1rem 0;
    color: #6b7280;
}

.btn-policy {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-policy:hover {
    background: #2563eb;
    text-decoration: none;
}

.privacy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.btn-close-privacy {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-close-privacy:hover {
    background: #4b5563;
}

@media (max-width: 768px) {
    .privacy-modal {
        padding: 1rem;
    }

    .privacy-content {