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

:root {
    --swiss-red: #DC0018;
    --swiss-red-dark: #a00014;
    --accent-orange: #ff6b35;
    --accent-blue: #2c5aa0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --background: #ffffff;
    --background-light: #f8f8f8;
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    --gradient-warm: linear-gradient(135deg, #fff5f5 0%, #fef3f0 100%);
    --border-light: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
    --shadow-colored: 0 8px 32px rgba(220, 0, 24, 0.15);
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-light);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 2rem;
}

.language-switcher {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.language-btn:hover {
    background: var(--background-light);
    border-color: var(--text-secondary);
}

.language-btn.active {
    background: var(--swiss-red);
    color: white;
    border-color: var(--swiss-red);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--swiss-red) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.cta-button):hover {
    color: var(--swiss-red);
}

.nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--swiss-red);
    transition: width 0.3s ease;
}

.nav-menu a:not(.cta-button):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.primary-button {
    background: var(--swiss-red);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(220, 0, 24, 0.3);
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-button:hover {
    background: var(--swiss-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 0, 24, 0.4);
}

.primary-button:hover::before {
    width: 300px;
    height: 300px;
}

.primary-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.secondary-button {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.secondary-button:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.cta-button {
    background: var(--swiss-red);
    color: white;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
}

.cta-button:hover {
    background: #c00015;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

.disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gradient-warm);
    border-radius: 8px;
    display: inline-block;
}

.disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Problem/Solution Section */
.problem-solution {
    background: var(--background-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    background-clip: padding-box;
}

.solution-item:nth-child(1) { border-top: 3px solid var(--swiss-red); }
.solution-item:nth-child(2) { border-top: 3px solid var(--accent-orange); }
.solution-item:nth-child(3) { border-top: 3px solid var(--accent-blue); }

.solution-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.solution-item h3 {
    color: var(--swiss-red);
    margin-bottom: 0.75rem;
}

/* Services Section */
.services {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--swiss-red) 0%, var(--accent-orange) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: var(--gradient-warm);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--swiss-red);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon svg {
    color: var(--accent-orange);
}

.service-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(8%) sepia(96%) saturate(4446%) hue-rotate(350deg) brightness(91%) contrast(109%);
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(85%) saturate(2841%) hue-rotate(15deg) brightness(102%) contrast(101%);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--swiss-red);
}

/* Examples Section */
.examples {
    padding: 5rem 0;
    background: var(--background-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--swiss-red) 0%, var(--accent-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.example-card:hover::before {
    transform: scaleX(1);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.example-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.industry-tag {
    background: rgba(220, 0, 24, 0.1);
    color: var(--swiss-red);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-metric {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--swiss-red);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.example-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example-tech {
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Process Section */
.process {
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, var(--accent-orange) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1.2); opacity: 0; }
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

/* Why Us Section */
.why-us {
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--swiss-red) 0%, var(--accent-orange) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit:hover::before {
    transform: translateX(0);
}

.benefit h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.name-explanation {
    margin-bottom: 3rem;
}

.name-explanation h3 {
    font-size: 2rem;
    color: var(--swiss-red);
    margin-bottom: 0.5rem;
}

.pronunciation {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.core-value {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.core-value p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #DC0018 0%, #a00014 100%);
    padding: 6rem 0;
    position: relative;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--swiss-red), transparent);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--swiss-red);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    margin-top: 2rem;
}

.cta-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer p, .footer li, .footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer ul {
    list-style: none;
}

.footer li {
    padding: 0.25rem 0;
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

/* Tool Integration Section */
.tools-integration {
    padding: 5rem 0;
    background: var(--background-light);
}

.tools-ticker {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    background: var(--background-light);
    padding: 2rem 0;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.tool-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    opacity: 0.7;
    transition: var(--transition);
}

.tool-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.tool-logo img {
    width: 32px;
    height: 32px;
    filter: opacity(0.7);
    transition: var(--transition);
}

.tool-logo span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.tool-logo:hover img {
    filter: opacity(1);
}

.tool-logo:hover span {
    color: var(--text-primary);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tools-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--swiss-red);
}

/* Multilingual Section */
.multilingual {
    padding: 5rem 0;
    background: var(--background-light);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.language-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.language-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--swiss-red) 0%, var(--accent-orange) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.language-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.language-card:hover::before {
    transform: translateX(0);
}

.language-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Swiss Scenarios Section */
.swiss-scenarios {
    padding: 5rem 0;
    background: var(--background);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light);
}

.scenario-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.location {
    background: var(--swiss-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.scenario-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.scenario-content strong {
    color: var(--swiss-red);
}

.scenario-tech {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--swiss-red);
}

.scenarios-cta {
    background: var(--gradient-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid var(--border-light);
}

.scenarios-cta h3 {
    color: var(--swiss-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.scenarios-cta p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--background);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.75rem;
}

.close {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close:hover {
    color: var(--swiss-red);
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--swiss-red);
    box-shadow: 0 0 0 3px rgba(220, 0, 24, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button {
    flex: 1;
}

.secondary-button {
    background-color: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-light);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.secondary-button:hover {
    background-color: var(--background-light);
    border-color: var(--text-secondary);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll animations */
.benefit, .service-card, .process-step, .example-card, .faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit.visible, .service-card.visible, .process-step.visible, .example-card.visible, .faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for benefits are now defined above with card styling */

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 3rem 0;
    }

    .solutions-grid,
    .services-grid,
    .process-timeline,
    .benefits-grid,
    .examples-grid,
    .faq-grid,
    .language-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .tools-ticker {
        padding: 1.5rem 0;
    }

    .ticker-track {
        animation-duration: 30s;
        gap: 2rem;
    }

    .tool-logo {
        min-width: 80px;
    }

    .tool-logo img {
        width: 28px;
        height: 28px;
    }

    .tool-logo span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .process-step {
        padding: 0 1rem;
    }

    .example-card {
        padding: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }
}