/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A2463;
    --primary-light: #3E5C9A;
    --accent: #FF6B35;
    --background: #FFFFFF;
    --foreground: #1A1A2E;
    --muted: #F5F5F7;
    --muted-foreground: #6B7280;
    --border: #E5E7EB;
    --card-bg: #FCFCFC;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

.container {
    width: 100%;
    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;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 107, 53, 0.03) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: rgba(252, 252, 252, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(10, 36, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.benefit-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* CTA Button */
.hero-cta {
    margin-top: 3rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #E55A2B;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: var(--background);
}

.solution-content {
    max-width: 64rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

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

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--foreground);
}

.checkmarks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkmark-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

/* Solution Image */
.solution-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 0.75rem;
    z-index: -1;
}

.decoration-1 {
    bottom: -1.5rem;
    right: -1.5rem;
    background: rgba(255, 107, 53, 0.2);
}

.decoration-2 {
    top: -1.5rem;
    left: -1.5rem;
    background: rgba(10, 36, 99, 0.1);
}

/* Profit Section */
.profit-section {
    padding: 6rem 0;
    background: var(--muted);
}

.profit-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.profit-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-card {
    background: rgba(10, 36, 99, 0.05);
    border: 1px solid rgba(10, 36, 99, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 3rem;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--foreground);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--background);
}

.contact-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(10, 36, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-light);
}

.contact-link-email {
    font-size: 1.125rem;
    word-break: break-all;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--primary);
    color: white;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-company {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.footer-contact {
    margin-top: 0.75rem;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
