* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;

}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.loading-screen.show {
    opacity: 1;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-logo i {
    display: block;
}

.loading-content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-content p {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.logout {
    color: #dc2626;
}

.nav-link.logout:hover {
    color: #b91c1c;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-primary:disabled,
.btn-primary.loading {
    background-color: #93c5fd;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-danger {
    background-color: #dc2626;
    color: white;
}

.btn-danger:hover {
    background-color: #b91c1c;
}

.btn-success {
    background-color: #16a34a;
    color: white;
}

.btn-success:hover {
    background-color: #15803d;
}

.btn-block {
    width: 100%;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.card-body {
    margin: 1rem 0;
}

.card-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: gap;
    gap: 0.75rem;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background-color: #dbeafe;
    color: #0c4a6e;
    border: 1px solid #bfdbfe;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-card {
    cursor: pointer;
}

.project-card .card:hover {
    border-color: #2563eb;
}

.project-info {
    margin: 1rem 0;
}

.project-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.5rem 0;
}

.project-stats {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.4;
}

.project-stats .stat-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.project-stats .stat-row span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
	margin-bottom: 10px;
}

.project-stats .status-row span {
    font-weight: 600;
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
}

.project-stats .status.new {
    background: #2563eb; /* Blau */
}

.project-stats .status.contacted {
    background: #f59e0b; /* Grün */
}

.project-stats .status.qualified {
    background: #16a34a; /* Gelb/Orange */
}

.project-stats i {
    font-size: 0.7rem;
}


/* NEW */
.lead-status[data-status="new"] {
    background: #e0f2fe;
    color: #0369a1;
}

/* QUALIFIED */
.lead-status[data-status="qualified"] {
    background: #dcfce7;
    color: #166534;
}

/* converted */
.lead-status[data-status="converted"] {
    background: #dcfce7;
    color: #1DFF00;
}

/* MAILED */
.lead-status[data-status="mailed"] {
    background: #fef9c3;
    color: #854d0e;
}

/* CONTACTED */
.lead-status[data-status="contacted"] {
    background: #ede9fe;
    color: #5b21b6;
}

/* WON */
.lead-status[data-status="won"] {
    background: #bbf7d0;
    color: #14532d;
}

/* LOST */
.lead-status[data-status="lost"] {
    background: #fee2e2;
    color: #991b1b;
}

/* IGNORED */
.lead-status[data-status="ignored"] {
    background: #e5e7eb;
    color: #374151;
}


.status-dropdown{
    padding: 0.75rem 12px;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;	
	
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
}

.modal-close:hover {
    color: #1e293b;
}

/* Table */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th {
    background-color: #f8fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.table tbody tr:hover {
    background-color: #f8fafc;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background-color: #dbeafe;
    color: #0c4a6e;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .main-content {
        padding: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
    }

    .hero {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .header.landing-header .nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-link.btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Landing Page Styles */
.landing-container {
    background: white;
}

.landing-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.landing-content {
    flex: 1;
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #0f172a;
}

.hero-content > p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    font-size: 8rem;
    color: #2563eb;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem; /* Schriftgröße verkleinern, damit sie nicht bricht */
    }

    .hero-buttons {
        flex-direction: column; /* Buttons untereinander */
        align-items: stretch;
    }

    .btn-lg {
        width: 100%; /* Buttons volle Breite auf Handy */
        justify-content: center;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 0 1 calc(25% - 1.5rem);
    text-align: center;
    min-width: 200px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.step p {
    color: #64748b;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    flex: 0 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card.pro {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    display: block;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: #16a34a;
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: #cbd5e1;
}

.pricing-features li.disabled i {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Cards untereinander statt nebeneinander */
        padding: 0 1rem;
    }

    .pricing-card.pro {
        transform: scale(1); /* Den Zoom auf dem Handy ausschalten */
        margin: 1rem 0;      /* Etwas Abstand nach oben/unten */
    }
}

.faq-container {
    width: 100%;
    padding: 0 1rem; /* Verhindert das Kleben am Rand */
}

.faq-section dl dt {
    line-height: 1.4; /* Bessere Lesbarkeit auf mobilen Geräten */
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-content .btn-lg {
    margin-top: 1rem;
}

#search-query-input{
	
	
	    width: 300px;
    padding: 0.6rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s ease;
    outline: none;
    min-width: 130px;
}

#edit-query-btn{
	
	    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background-color: rgb(37, 99, 235);
    color: white;
}

#save-query-btn{
padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background-color: rgb(37, 99, 235);
    color: white;

}
/* Filter Container */
.filter-container {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

/* Die Inputs und Selects */
.filter-container .input {
    padding: 0.6rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s ease;
    outline: none;
    min-width: 130px;
}

.filter-container .input:focus {
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Spezielle Anpassung für Selects (Pfeil-Design) */
.filter-container select.input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Checkbox Labels */
.filter-container label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.filter-container label:hover {
    background: #f1f5f9;
}

.filter-container input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #3b82f6;
    cursor: pointer;
}



/*Leads Listen Style*/

.leads-grid {
    display: grid;
    gap: 1rem;
}

.lead-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    transition: box-shadow .15s, transform .15s;
}

.lead-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-1px);
}

.lead-image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
}

.lead-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.lead-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.lead-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.lead-actions {
    display: flex;
    gap: .5rem;
}

.lead-meta {
    font-size: .9rem;
    color: #475569;
}

.lead-meta strong {
    font-weight: 500;
}

.lead-rating {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .9rem;
}

.lead-rating i {
    color: #facc15;
}
.scrape-btn{
	cursor: pointer;
}


.lead-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: #64748b;
}

.badge {
    padding: .15rem .45rem;
    border-radius: 6px;
    font-size: .75rem;
    background: #e2e8f0;
}

.badge.status-new { background:#dbeafe; color:#1e40af; }
.badge.status-contacted { background:#dcfce7; color:#166534; }
.badge.status-qualified { background:#fef9c3; color:#854d0e; }
.badge.status-lost { background:#fee2e2; color:#991b1b; }





/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #2563eb;
}

.lang-switch button {
        background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
}


.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    transition: all 0.2s;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    max-width: 1200px;
    margin: 0 auto;
}

.footer {
    margin-top: 4rem;
    padding: 2rem 1.5rem;
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    margin-right: 1rem;
}

.footer a:hover {
    color: #38bdf8;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.footer-right i {
    font-size: 1.2rem;
    margin-left: 0.75rem;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
