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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: #cbd5e1;
}

.hero-tagline {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #94a3b8;
}

/* Sections */
.section {
    padding: 80px 0;
    background-color: #0f172a;
}

.section-alt {
    background-color: #1e293b;
}

.section-title {
    text-align: center;
    color: #f1f5f9;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Content Blocks */
.content-block {
    max-width: 700px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.role-highlight {
    text-decoration: underline;
    text-decoration-color: #fafbfb;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 500;
}

.linkedin-center {
    text-align: center;
    margin-top: 1rem;
}


/* Lists */
.service-list, .benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li, .benefit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.benefit-description {
    margin-top: 0.5rem;
    margin-left: 0;
    padding-left: 0;
    font-size: 1rem;
    color: #94a3b8;
    font-style: italic;
    line-height: 1.5;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.process-list li {
    counter-increment: step-counter;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}


.process-note {
    text-align: center;
    font-style: italic;
    color: #94a3b8;
    margin-top: 2rem;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.simple-contact {
    text-align: center;
    margin-top: 2rem;
}

.simple-contact .email-link {
    font-size: 1.3rem;
    font-weight: 500;
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s ease;
}

.simple-contact .email-link:hover {
    color: #059669;
    text-decoration: underline;
}

.linkedin-link {
    color: #93c5fd !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

.linkedin-link:hover {
    color: #dbeafe !important;
    text-decoration: underline;
}

/* Contact button inline */
.email-button {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: #ffffff;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    margin-left: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    font-size: 1.05rem;
}

.email-button:hover {
    background: linear-gradient(135deg, #4e99f5 0%, #835df6 100%);
    transform: translateY(-1px);rgb(80, 155, 248)
}

.email-button:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* Language info */

.flag-icon {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    vertical-align: middle;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid #334155;
    position: relative;
    z-index: 10;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-tagline {
    font-style: italic;
    margin: 1rem 0;
    color: #cbd5e1;
}

.footer-cta {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.footer-email {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.footer-email:hover {
    color: #059669;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 80vh;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .service-list li, .benefit-list li, .process-list li {
        font-size: 1rem;
    }
    
    .footer {
        padding: 1rem 0;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .process-list li {
        padding-left: 2.5rem;
    }
    
    .process-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 0.75rem 0;
        min-height: 40px;
    }
}

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

/* Focus states for accessibility */
a:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero {
        background: #1e293b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .section-alt {
        background: #1e293b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
