/* Custom styles for branding and layout */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary-blue: #3b82f6;
    --primary-teal: #14b8a6;
    --dark-bg: #0d0c1a;
    --dark-card: #181829;
    --dark-border: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --hero-gradient-start: #3b82f6;
    --hero-gradient-end: #14b8a6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-logo-gradient {
    font-size: inherit;
    font-weight: inherit;
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background-color: white;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: white;
}

.card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
}

.icon {
    font-size: 1.5rem;
    color: var(--primary-teal);
}

.security-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #34d399;
    border: 1px solid #059669;
    border-radius: 9999px;
    padding: 8px 16px;
}

iframe {
    max-width: 100%;
    height: 900px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 9999px;
    font-weight: bold;
}