/* CSS Variables */
:root {
    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-200: #ddd6fe;
    --violet-300: #c4b5fd;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --violet-700: #6d28d9;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --green-100: #dcfce7;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --red-100: #fee2e2;
    --red-600: #dc2626;
    --amber-100: #fef3c7;
    --amber-600: #d97706;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--slate-900);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    h1 {
    font-size: 2.25rem;
    }

    h2 {
    font-size: 1.75rem;
    }

    h3 {
    font-size: 1.25rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
    padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
    padding: 0 2rem;
    }
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-violet {
    color: var(--violet-600);
}

.text-slate {
    color: var(--slate-600);
}

.text-white {
    color: var(--white);
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--violet-700), var(--indigo-700));
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
    background: var(--slate-50);
    border-color: var(--slate-300);
}

.btn-white {
    background: var(--white);
    color: var(--violet-600);
}

.btn-white:hover {
    background: var(--slate-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-600);
}

.btn-ghost:hover {
    background: var(--slate-100);
    color: var(--violet-600);
}

.card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--slate-100);
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--slate-200);
}

.card-body {
    padding: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    gap: 0.25rem;
}

.badge-violet {
    background: var(--violet-100);
    color: var(--violet-700);
}

.badge-green {
    background: var(--green-100);
    color: var(--green-600);
}

.badge-amber {
    background: var(--amber-100);
    color: var(--amber-600);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    background: var(--white);
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--violet-500);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.navbar-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-nav {
    display: flex;
    }
}

.navbar-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.2s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--violet-600);
}

.navbar-actions {
    display: none;
    gap: 1rem;
}

@media (min-width: 768px) {
    .navbar-actions {
    display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    color: var(--slate-900);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
    display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--slate-100);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--slate-600);
    border-radius: 0.5rem;
}

.mobile-menu a:hover {
    background: var(--slate-50);
}

.footer {
    background: var(--slate-950);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
    grid-column: span 1;
    }
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 1rem 0;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--violet-600);
}

.footer h4 {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: var(--slate-400);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer ul a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom {
    flex-direction: row;
    }
}

.footer-bottom p {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--slate-500);
}

.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 119, 198, 0.15), transparent);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--violet-700);
    margin-bottom: 1.5rem;
}

.hero-badge .pulse {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--violet-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
    opacity: 1;
    }

    50% {
    opacity: 0.5;
    }
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
    flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 36rem;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.hero-image {
    margin-top: 4rem;
    position: relative;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--slate-200);
}

.feature-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--slate-200);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-violet {
    background: var(--violet-100);
    color: var(--violet-600);
}

.feature-icon-green {
    background: var(--green-100);
    color: var(--green-600);
}

.feature-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.feature-icon-orange {
    background: #ffedd5;
    color: #ea580c;
}

.feature-icon-pink {
    background: #fce7f3;
    color: #db2777;
}

.feature-icon-cyan {
    background: #cffafe;
    color: #0891b2;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--slate-600);
    font-size: 0.9375rem;
}

.testimonial-card {
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial-quote {
    color: var(--slate-700);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--slate-900);
}

.testimonial-author-role {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.cta-section {
    background: linear-gradient(135deg, var(--slate-900), #312e81, var(--slate-900));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--slate-300);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
    flex-direction: row;
    }
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300);
    font-size: 0.875rem;
}

.cta-feature svg {
    color: #4ade80;
}

.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--violet-50), var(--white));
    text-align: center;
}

.page-header-label {
    color: var(--violet-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.page-header h1 {
    margin-bottom: 1.5rem;
}

.page-header p {
    color: var(--slate-600);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-200);
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fbbf24, #f97316);
    color: var(--slate-900);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-name {
    color: var(--white);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-desc {
    color: var(--violet-200);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-period {
    color: var(--violet-200);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pricing-feature svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-feature.included svg {
    color: var(--green-500);
}

.pricing-feature.excluded {
    color: var(--slate-400);
}

.pricing-feature.excluded svg {
    color: var(--slate-300);
}

.pricing-card.featured .pricing-feature {
    color: var(--white);
}

.pricing-card.featured .pricing-feature.included svg {
    color: #86efac;
}

.pricing-card.featured .pricing-feature.excluded {
    color: var(--violet-300);
}

.blog-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-category {
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.blog-card:hover h3 {
    color: var(--violet-600);
}

.blog-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.contact-form {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
}

@media (min-width: 1024px) {
    .contact-form {
    padding: 2.5rem;
    }
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: var(--violet-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-600);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.contact-info-value {
    font-weight: 500;
    color: var(--slate-900);
}

.case-study-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.case-study-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.case-study-results {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

.case-study-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.case-study-result-value {
    font-weight: 600;
    color: var(--slate-900);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--violet-50), var(--white));
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 32rem;
}

.error-code {
    font-size: 12rem;
    font-weight: 700;
    color: var(--violet-100);
    line-height: 1;
    position: relative;
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--violet-500), var(--indigo-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.error-content h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--slate-600);
    margin-bottom: 2rem;
}

.error-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.error-links p {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 1rem;
}

.error-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-links-list a {
    color: var(--violet-600);
    font-weight: 500;
    transition: color 0.2s;
}

.error-links-list a:hover {
    color: var(--violet-700);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.w-full {
    width: 100%;
}

.hidden {
    display: none;
}

.bg-slate-50 {
    background: var(--slate-50);
}

.bg-white {
    background: var(--white);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.border-t {
    border-top: 1px solid var(--slate-200);
}

.pt-8 {
    padding-top: 2rem;
}