:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #10b981;
    --accent-light: #34d399;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 30px;
	font-weight: 500;
	font-family:ubuntu;
}

.footer-logo {
    color: white;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    font-weight: 700;
    font-size: 18px;
}


nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    color: var(--secondary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding: 32px 0 0;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-bar p {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 14px;
}

/* Tech Stack Section */
.tech-stack {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

.tech-stack .section-header h2 {
    color: var(--white);
}

.tech-stack .section-header p {
    color: var(--gray-400);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.tech-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tech-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--white);
}

.tech-card p {
    color: var(--gray-400);
    font-size: 13px;
    line-height: 1.5;
}

.tech-card .tech-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 12px;
    text-transform: uppercase;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 15px;
}

/* Infrastructure Section */
.infrastructure {
    padding: 100px 0;
    background: var(--white);
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.infra-content h2 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.infra-content > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.infra-list {
    list-style: none;
}

.infra-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.infra-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.infra-list strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}

.infra-list span {
    color: var(--gray-600);
    font-size: 14px;
}

.infra-visual {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
}

.infra-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.infra-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.infra-stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.infra-stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.infra-stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

.infra-stat.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
}

.infra-stat.highlight .infra-stat-value,
.infra-stat.highlight .infra-stat-label {
    color: var(--white);
}

/* Security Section */
.security {
    padding: 100px 0;
    background: var(--gray-50);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.security-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
}

.security-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.security-card h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.security-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 12px;
}

.security-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.security-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Compliance Section */
.compliance {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

.compliance .section-header h2 {
    color: var(--white);
}

.compliance .section-header p {
    color: var(--gray-400);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.compliance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.compliance-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.compliance-card p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-size: 24px;
    color: var(--gray-500);
}

.pricing-amount {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
}

.pricing-period {
    color: var(--gray-500);
    font-size: 16px;
}

.pricing-from {
    color: var(--gray-500);
    font-size: 14px;
    margin-right: 4px;
}

.pricing-features {
    list-style: none;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-700);
    font-size: 15px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 24px;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--gray-100);
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h3 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    font-size: 14px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    margin-left: 24px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 24px;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 16px;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--gray-500);
    font-size: 14px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.modal-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.modal-footer p {
    color: var(--gray-500);
    font-size: 14px;
}

.modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.legal-content .last-updated {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--secondary);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--gray-600);
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
}

.legal-content .contact-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.back-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: var(--primary);
}

/* Simple Header for Legal Pages */
.simple-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.simple-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

/* Legal Page Styles */
.page-header {
    background: var(--secondary);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--gray-400);
    font-size: 16px;
}

.content {
    padding: 80px 0;
}

.content h2 {
    font-size: 24px;
    color: var(--secondary);
    margin-top: 48px;
    margin-bottom: 16px;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content ul, .content ol {
    color: var(--gray-600);
    margin-bottom: 16px;
    padding-left: 24px;
}

.content li {
    margin-bottom: 8px;
}

.content a {
    color: var(--primary);
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.content table th,
.content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.content table th {
    background: var(--gray-50);
    color: var(--secondary);
    font-weight: 600;
}

/* AUP Boxes */
.prohibited-box {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.prohibited-box h3 {
    color: #991b1b;
    margin-top: 0;
    margin-bottom: 16px;
}

.prohibited-box ul {
    color: var(--gray-700);
}

.allowed-box {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.allowed-box h3 {
    color: #166534;
    margin-top: 0;
    margin-bottom: 16px;
}

.allowed-box ul {
    color: var(--gray-700);
}

/* GDPR Info Box */
.info-box {
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.info-box h3 {
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 12px;
}

.info-box p {
    color: var(--gray-700);
    margin-bottom: 0;
}

.info-box a {
    color: #1e40af; /* blue-800 for better contrast on light blue bg */
    text-decoration: underline;
}

.info-box a:hover {
    color: #1e3a8a; /* blue-900 */
}

/* GDPR Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.right-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
}

.right-card h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.right-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 0;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 36px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 16px;
}

.section > .container > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.story-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.stats {
    background: var(--primary);
    color: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.stat-big {
    font-size: 80px;
    font-weight: 700;
}

.stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 15px;
}

.tech-highlight {
    background: var(--secondary);
    padding: 80px 0;
    color: white;
}

.tech-highlight h2 {
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.tech-highlight > .container > p {
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 48px;
}

.tech-highlight .tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tech-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.tech-item .label {
    color: var(--gray-400);
    font-size: 14px;
}

.location {
    padding: 80px 0;
    background: var(--gray-50);
}

.location h2 {
    text-align: center;
    margin-bottom: 16px;
}

.location > .container > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.location-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.location-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.location-card p {
    color: var(--gray-600);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-icon {
    font-size: 28px;
}

.contact-method h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.response-times {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.response-times h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.response-times ul {
    list-style: none;
    padding: 0;
}

.response-times li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 14px;
}

.response-times li span:last-child {
    color: #047857; /* emerald-700 for better contrast */
    font-weight: 600;
}

.contact-form h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.contact-form form {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Simple Footer for subpages */
/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .infra-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Trust bar wrapping */
    .trust-logos {
        flex-wrap: wrap;
        gap: 16px 24px;
        justify-content: center;
    }
    
    /* Infra stats grid */
    .infra-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .header .container {
        padding: 0 16px;
    }
    
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .header-actions .btn-primary {
        display: none; /* Hide Get Started on mobile, keep Login */
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile navigation */
    nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        z-index: 99;
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    nav a:last-child {
        border-bottom: none;
    }
    
    /* Center icons in cards on mobile */
    .feature-icon,
    .tech-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card,
    .tech-card {
        text-align: center;
    }
    
    /* Hero mobile */
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat {
        text-align: center;
    }
    
    .hero-image {
        display: none; /* Hide decorative image on mobile */
    }
    
    /* Trust bar mobile */
    .trust-bar {
        padding: 40px 0;
    }
    
    .trust-logos {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
    
    .trust-item {
        font-size: 13px;
    }
    
    /* Sections mobile */
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .pricing-grid,
    .tech-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .infra-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .infra-stat {
        padding: 16px;
    }
    
    .infra-stat .number {
        font-size: 24px;
    }
    
    nav {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .modal-content {
        margin: 16px;
        padding: 24px;
    }
    
    /* Legal pages mobile */
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-highlight .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Pricing cards mobile */
    .pricing-card {
        padding: 24px;
    }
    
    .price .amount {
        font-size: 40px;
    }
    
    /* CTA section mobile */
    .cta h2 {
        font-size: 24px;
    }
    
    .cta p {
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat .number {
        font-size: 20px;
    }
    
    .infra-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-logos {
        flex-direction: column;
        align-items: center;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .tech-card,
    .feature-card,
    .compliance-card,
    .security-card {
        padding: 20px;
    }
}

/* ===================
   TABLES
   =================== */
.table-container {
    overflow-x: auto;
    margin: 24px 0;
}

.legal-content table,
.content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-content table th,
.legal-content table td,
.content table th,
.content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.legal-content table th,
.content table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-content table td,
.content table td {
    color: var(--text-secondary);
}

.legal-content table tr:last-child td,
.content table tr:last-child td {
    border-bottom: none;
}

.legal-content table tr:hover td,
.content table tr:hover td {
    background: rgba(37, 99, 235, 0.02);
}

/* Hide reCAPTCHA badge (required text added to form) */
.grecaptcha-badge {
    visibility: hidden !important;
}

