/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #0f172a;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    height: 2.5rem;
    width: 2.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: #0891b2;
    color: white;
    border-color: #0891b2;
}

.btn-primary:hover {
    background: #0e7490;
    border-color: #0e7490;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    background: #f1f5f9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-white {
    background: white;
    color: #0891b2;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

.btn-chat {
    background: #2563eb;
    border-color: #2563eb;
}

.btn-chat:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-small {
    width: 1rem;
    height: 1rem;
}

.icon-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.icon-check-small {
    width: 1rem;
    height: 1rem;
    color: #10b981;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #ecfeff, #dbeafe, white);
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    background: #0891b2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.text-cyan {
    color: #0891b2;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-stats {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
}

.stats-icon {
    background: linear-gradient(to bottom right, #ecfeff, #cffafe);
    border-radius: 9999px;
    padding: 0.75rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #0891b2;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.stats-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0891b2, #2563eb);
}

.process-card:hover {
    border-color: #67e8f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #ecfeff, #dbeafe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: #0891b2;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.process-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.team-content > p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    background: #ecfeff;
    border-radius: 9999px;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #0891b2;
}

.feature-item h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #64748b;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0891b2, #2563eb);
    opacity: 0.95;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('./eller.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.25rem;
    color: #cffafe;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 5rem;
	width: 20em;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Communication Page */
.main-content {
    padding: 5rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #ecfeff, #dbeafe);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-top: 1rem;
    border: 1px solid #67e8f9;
    font-weight: 500;
    color: #334155;
}

.method-badge.chat-badge {
    background: linear-gradient(to right, #dbeafe, #e0e7ff);
    border-color: #93c5fd;
}

.communication-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .communication-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.communication-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.communication-card:hover {
    border-color: #67e8f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.communication-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-icon {
    background: linear-gradient(to bottom right, #ecfeff, #dbeafe);
}

.email-icon svg {
    width: 3rem;
    height: 3rem;
    color: #0891b2;
}

.chat-icon {
    background: linear-gradient(to bottom right, #dbeafe, #e0e7ff);
}

.chat-icon svg {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
}

.communication-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.card-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.info-banner {
    background: linear-gradient(to right, #ecfeff, #dbeafe);
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid #0891b2;
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: #0891b2;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.info-banner h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-banner p {
    color: #334155;
    line-height: 1.7;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #64748b;
}

.card-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 200px;
}

.form-help {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.info-box {
    background: linear-gradient(to right, #ecfeff, #dbeafe);
    border-left: 4px solid #0891b2;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #1e293b;
}

/* Login Page */
.login-main {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f8fafc, white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-container {
    max-width: 28rem;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to bottom right, #ecfeff, #dbeafe);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.login-logo img {
    width: 3rem;
    height: 3rem;
}

.login-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #64748b;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
}

.link {
    color: #0891b2;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    color: #0e7490;
    text-decoration: underline;
}

/* Alert */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.alert-error strong {
    color: #991b1b;
    display: block;
    margin-bottom: 0.25rem;
}

.alert-error p {
    color: #dc2626;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2, .team-content h2 {
        font-size: 2rem;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}