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

:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --secondary-50: #fffbeb;
    --secondary-100: #fef3c7;
    --secondary-200: #fde68a;
    --secondary-300: #fcd34d;
    --secondary-400: #fbbf24;
    --secondary-500: #f59e0b;
    --secondary-600: #d97706;
    --secondary-700: #b45309;
    --secondary-800: #92400e;
    --secondary-900: #78350f;
    --accent-50: #fef2f2;
    --accent-100: #fee2e2;
    --accent-200: #fecaca;
    --accent-300: #fca5a5;
    --accent-400: #f87171;
    --accent-500: #ef4444;
    --accent-600: #dc2626;
    --accent-700: #b91c1c;
    --accent-800: #991b1b;
    --accent-900: #7f1d1d;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --amber-400: #fbbf24;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --blue-900: #1e3a8a;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-24 { width: 6rem; }
.h-1 { height: 0.25rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-32 { height: 8rem; }
.min-h-screen { min-height: 100vh; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-100 { border-color: #dbeafe; }
.border-white { border-color: #ffffff; }
.border-primary-600 { border-color: var(--primary-600); }
.bg-white { background-color: #fff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-900 { background-color: #111827; }
.bg-primary-50 { background-color: var(--primary-50); }
.bg-primary-600 { background-color: var(--primary-600); }
.bg-primary-900 { background-color: var(--primary-900); }
.bg-accent-500 { background-color: var(--accent-500); }
.bg-secondary-500 { background-color: var(--secondary-500); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0)); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.from-orange-400 { --tw-gradient-from: var(--orange-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 146, 60, 0)); }
.to-blue-50 { --tw-gradient-to: #eff6ff; }
.to-amber-400 { --tw-gradient-to: var(--amber-400); }
.to-slate-800 { --tw-gradient-to: var(--slate-800); }
.to-transparent { --tw-gradient-to: transparent; }
.via-blue-900 { --tw-gradient-via: var(--blue-900); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(30, 58, 138, 0)); }
.text-white { color: #fff; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-blue-600 { color: var(--primary-600); }
.text-blue-700 { color: var(--primary-700); }
.text-slate-900 { color: var(--slate-900); }
.text-orange-400 { color: var(--orange-400); }
.text-orange-500 { color: var(--orange-500); }
.text-amber-400 { color: var(--amber-400); }
.text-primary-600 { color: var(--primary-600); }
.text-primary-700 { color: var(--primary-700); }
.text-primary-900 { color: var(--primary-900); }
.text-accent-500 { color: var(--accent-500); }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.bg-clip-text { background-clip: text; }
.text-transparent { color: transparent; }

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

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fade-in { animation: fadeIn 0.5s ease-in-out; }
.animate-slide-up { animation: slideUp 0.5s ease-out; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Logo Styles */
.logo-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    position: relative;
}

.logo-star {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.75rem;
    height: 0.75rem;
    color: var(--amber-400);
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.logo-sm .logo-text { font-size: 1.125rem; line-height: 1.75rem; }
.logo-md .logo-text { font-size: 1.5rem; line-height: 2rem; }
.logo-lg .logo-text { font-size: 1.875rem; line-height: 2.25rem; }

.logo-sm .logo-icon { width: 1.25rem; height: 1.25rem; }
.logo-md .logo-icon { width: 1.75rem; height: 1.75rem; }
.logo-lg .logo-icon { width: 2.25rem; height: 2.25rem; }

.logo-dark .logo-text { color: var(--slate-900); }
.logo-dark .logo-accent { color: var(--orange-500); }
.logo-dark .logo-icon { color: var(--orange-500); }

.logo-light .logo-text { color: white; }
.logo-light .logo-accent { color: var(--orange-400); }
.logo-light .logo-icon { color: var(--orange-400); }

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    padding: 0 1rem;
}

.logo-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo-button:hover {
    transform: scale(1.05);
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--accent-500);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background-color: var(--accent-500);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: var(--primary-900);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--accent-500);
    background-color: #f3f4f6;
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background-color: white;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s;
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: var(--accent-500);
    background-color: #f9fafb;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-600);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    border: 2px solid var(--primary-600);
    color: var(--primary-600);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-600);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary-hero {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary-hero:hover {
    background-color: white;
    color: var(--primary-600);
}

/* Hero Section */
.hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/1583339/pexels-photo-1583339.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.7), rgba(30, 58, 138, 0.6), rgba(30, 41, 59, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--primary-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary-600);
}

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-700);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.hero-gradient-text {
    background: linear-gradient(to right, var(--orange-400), var(--amber-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #f3f4f6;
    max-width: 64rem;
    margin: 0 auto 2.5rem;
    line-height: 1.625;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.hero-stat-label {
    color: #e5e7eb;
}

.hero-decorative {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, #f8fafc, transparent);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--accent-500);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about-content {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

/* States Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.state-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.state-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.state-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.state-card:hover .state-image {
    transform: scale(1.1);
}

.state-content {
    padding: 1.5rem;
}

.state-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 0.5rem;
}

.state-products {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.625;
}

.state-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-500);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.state-link:hover {
    color: var(--accent-600);
}

.state-link-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.state-link:hover .state-link-icon {
    transform: translateX(0.25rem);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pagination-btn {
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-600);
}

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

.pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-dot.active {
    background-color: var(--accent-500);
}

.pagination-dot:not(.active) {
    background-color: #d1d5db;
}

.pagination-dot:not(.active):hover {
    background-color: #9ca3af;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-900);
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-check {
    width: 1rem;
    height: 1rem;
    color: var(--accent-500);
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-text {
    color: #374151;
    line-height: 1.625;
}

/* Trust Indicators */
.trust-section {
    margin-top: 4rem;
    background: linear-gradient(to right, var(--primary-50), #dbeafe);
    border-radius: 1rem;
    padding: 2rem 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #374151;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 1.5rem;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-500);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-item-text {
    color: #4b5563;
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to right, var(--primary-50), #dbeafe);
    border-radius: 0.5rem;
}

.business-hours-title {
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 0.75rem;
}

.business-hours-text {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.25rem;
}

.business-hours-text:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.success-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    display: none;
}

.success-message.show {
    display: block;
}

.success-content {
    display: flex;
    align-items: center;
}

.success-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    margin-right: 0.75rem;
}

.success-text {
    color: #15803d;
    font-weight: 500;
}

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

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

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--primary-500);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #fca5a5;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 5rem;
}

.error-message {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc2626;
    display: none;
}

.error-message.show {
    display: block;
}

.form-submit {
    width: 100%;
    background-color: var(--primary-600);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-submit:hover:not(:disabled) {
    background-color: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.submit-spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 9999px;
    animation: spin 1s linear infinite;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
}

.footer-main {
    padding: 4rem 0;
}

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

.footer-company {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    line-height: 1.625;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent-500);
}

.footer-contact-text {
    color: #d1d5db;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-link:hover {
    color: white;
}

.footer-services {
    list-style: none;
    padding: 0;
    color: #d1d5db;
}

.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-services li:last-child {
    margin-bottom: 0;
}

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

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-link {
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: #374151;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background-color: var(--accent-500);
    color: white;
    transform: scale(1.1);
}

.footer-social-icon {
    width: 1rem;
    height: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .trust-section {
        padding: 2rem 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}