/* CSS-Datei generiert und bereinigt (Purged) exklusiv für EffiLift32 Landingpage */

/* --- TAIWIND RESET BASE & PREFLIGHT --- */
/* --- RESET & BASICS --- */

/* Sicherstellen, dass die vergrößerte Schrift und die Button-Farbe korrekt definiert sind */

.text-4xl { 
    font-size: 2.25rem; /* Entspricht ca. 36px, also etwa 3x der Standardgröße 12-14px */
    line-height: 2.5rem; 
}

.bg-yellow-400 { 
    background-color: #facc15; /* Die hellere gelbe Farbe */
}

/* Margin-Korrektur für die große Schrift, damit sie nicht am Text klebt */
.mb-8 { 
    margin-bottom: 2rem; 
}

/* Falls "Neuheit für Werkstätten" ohne Hintergrund sein soll, 
   habe ich bg-yellow-500 in der HTML oben entfernt. */


*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: ui-sans-serif, system-ui, sans-serif; }
body { margin: 0; line-height: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: inherit; }

/* --- CUSTOM COLORS --- */
:root { --gsi-blue: #004A99; --gsi-yellow: #FFD700; }
.text-gsi-blue { color: var(--gsi-blue); }
.bg-gsi-blue { background-color: var(--gsi-blue); }
.btn-whatsapp { background-color: #25D366; color: white; }
.hero-gradient { background: linear-gradient(135deg, #004A99 0%, #002D5E 100%); }

/* --- TAILWIND UTILITIES (ESCAPED) --- */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 1024px) { .container { max-width: 1024px; } }

/* Transparenz & Blur */
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Typografie & Spacing */
.leading-\[1\.1\] { line-height: 1.1; }
.text-4xl { font-size: 2.25rem; }
@media (min-width: 768px) { .md\:text-6xl { font-size: 3.75rem; } }

/* ... (Alle weiteren Klassen wie px-4, py-20, flex, grid etc. sind im CSS optimiert) ... */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e2e8f0;
}
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
body {
    margin: 0;
    line-height: inherit;
}
a {
    color: inherit;
    text-decoration: inherit;
}
input, textarea, button {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}
button {
    text-transform: none;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
}
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, p {
    margin: 0;
}

/* --- DESIGN VARIABLEN & CUSTOM STYLES --- */
:root {
    --gsi-blue: #004A99;
    --gsi-yellow: #FFD700;
}
.scroll-smooth { scroll-behavior: smooth; }
.bg-gsi-blue { background-color: var(--gsi-blue); }
.text-gsi-blue { color: var(--gsi-blue); }
.btn-whatsapp { background-color: #25D366; color: white; }
.hero-gradient { background: linear-gradient(135deg, #004A99 0%, #002D5E 100%); }

/* --- REINE UTILITY CLASSES (NUR DIE VERWENDETEN) --- */
.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-white { color: #ffffff; }
.text-blue-100 { color: #dbeafe; }
.text-yellow-400 { color: #facc15; }
.text-yellow-500 { color: #eab308; }
.text-green-500 { color: #22c55e; }
.text-green-400 { color: #4ade80; }

.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-900 { background-color: #0f172a; }
.bg-white { background-color: #ffffff; }
.bg-white-90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black { background-color: #000000; }

.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.relative { position: relative; }
.absolute { position: absolute; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.overflow-hidden { overflow: hidden; }

/* Layout & Flexbox/Grid */
.container { width: 100%; margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }

/* Spacing & Gaps */
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }

.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-12 { gap: 3rem; }

/* Typografie */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.text-center { text-align: center; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight-11 { line-height: 1.1; }
.leading-relaxed { line-height: 1.625; }

/* Dimensionen & Layout-Helfer */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.aspect-video { aspect-ratio: 16 / 9; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.opacity-60 { opacity: 0.6; }
.block { display: block; }

/* Borders & Shadows & Borderradius */
.rounded { border-radius: 0.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-8 { border-width: 8px; border-style: solid; }
.border-dashed { border-style: dashed; }
.border-slate-200 { border-color: #e2e8f0; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-800 { border-color: #1f2937; }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-3xl { box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3); }

/* Interaktion & Effekte */
.transition { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

.hover\:brightness-105:hover { filter: brightness(1.05); }
.hover\:bg-yellow-400:hover { background-color: #facc15; }
.hover\:bg-white-20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:bg-blue-800:hover { background-color: #1e40af; }
.hover\:text-white:hover { color: #ffffff; }
.transform { transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

.focus\:ring-2:focus { outline: none; box-shadow: 0 0 0 2px #3b82f6; }

/* --- RESPONSIVE BREAKPOINTS (MEDIA QUERIES) --- */

/* Small Devices (sm) */
@media (min-width: 640px) {
    .container { max-width: 640px; }
    .hidden.sm\\:inline { display: inline; }
    .sm\\:hidden { display: none; }
    .sm\\:flex-row { flex-direction: row; }
    .sm\\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .sm\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Medium Devices (md) */
@media (min-width: 768px) {
    .container { max-width: 768px; }
    .md\\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\\:block { display: block; }
    .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\\:w-5\\/12 { width: 41.666667%; }
    .md\\:w-7\\/12 { width: 58.333333%; }
    .md\\:flex-row { flex-direction: row; }
}

/* Large Devices (lg) */
@media (min-width: 1024px) {
    .container { max-width: 1024px; }
    .lg\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .lg\\:flex-row { flex-direction: row; }
    .lg\\:w-3\\/5 { width: 60%; }
    .lg\\:w-2\\/5 { width: 40%; }
    .lg\\:mb-0 { margin-bottom: 0; }
    .lg\\:pr-12 { padding-right: 3rem; }
    .lg\\:text-left { text-align: left; }
    .lg\\:justify-start { justify-content: flex-start; }
}
"""

with open("index.html", "w", encoding="utf-8") as f:
    f.write(html_content)

with open("style.css", "w", encoding="utf-8") as f:
    f.write(css_content)

print("Files created successfully.")
