@font-face {
font-family: "Inter";
src: url("../fonts/Inter.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Space Grotesk";
src: url("../fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}
:root {
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--font-heading: 'Space Grotesk', 'Inter', sans-serif;
--color-primary: #0d9488;
--color-accent: #f59e0b;
--color-bg: #ffffff;
--color-surface: #f0fdfa;
--color-text: #0f172a;
--color-muted: #475569;
--color-border: #e2e8f0;
--radius: 12px;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
--transition: 0.2s ease;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
overflow-x: clip;
}
body {
font-family: var(--font-body);
color: var(--color-text);
background: var(--color-bg);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-x: clip;
}
main {
flex: 1 0 auto;
}
img {
display: block;
max-width: 100%;
}
a {
text-decoration: none;
color: inherit;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
h1,
h2,
h3 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
}
h2 {
font-size: clamp(2rem, 5vw, 2.8rem);
text-align: center;
margin-bottom: 0.5rem;
}
.section-subtitle {
text-align: center;
color: var(--color-muted);
font-size: 1.1rem;
margin-bottom: 2.5rem;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 40px;
font-weight: 600;
font-family: var(--font-heading);
transition: transform var(--transition), box-shadow var(--transition);
cursor: pointer;
border: none;
}
.btn--primary {
background: linear-gradient(135deg, var(--color-primary), #14b8a6);
color: #fff;
padding: 0.8rem 1.8rem;
}
.btn--primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}
.btn--outline {
background: transparent;
border: 2px solid var(--color-primary);
color: var(--color-primary);
padding: 0.8rem 1.8rem;
}
.btn--outline:hover {
background: var(--color-primary);
color: #fff;
transform: translateY(-2px);
}
.btn--lg {
padding: 1rem 2.5rem;
font-size: 1.1rem;
}
.logo a {
display: flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.6rem;
color: var(--color-primary);
}
.logo img {
width: 50px;
height: 50px;
object-fit: contain;
}
.logo-line1,
.logo-line2 {
display: block;
line-height: 1;
}
.nav {
position: sticky;
top: 0;
z-index: 40;
background: #f0fdfa;
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--color-border);
}
.nav__container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
align-items: center;
height: 72px;
gap: 1.5rem;
}
.nav__notice {
flex: 1;
text-align: right;
font-size: 0.8rem;
color: var(--color-muted);
padding-right: 1rem;
}
@media (max-width: 640px) {
.nav__container {
flex-wrap: wrap;
height: auto;
min-height: 72px;
padding-top: 1rem;
padding-bottom: 1rem;
}
}
.hero {
padding: 3rem 0 2rem;
}
.hero__container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.hero__container > * {
min-width: 0;
max-width: 100%;
}
.hero__text {
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.hero__title-line {
display: block;
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-family: var(--font-heading);
font-weight: 700;
color: var(--color-text);
}
.hero__title-accent {
display: block;
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-family: var(--font-heading);
font-weight: 700;
color: var(--color-accent);
}
.hero__subtitle {
font-size: 1.1rem;
color: var(--color-muted);
max-width: 90%;
}
.hero__actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 0.5rem;
}
.hero__badge {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.95rem;
color: var(--color-muted);
margin-top: 0.5rem;
}
.hero__image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: var(--radius);
aspect-ratio: 4/3;
}
@media (max-width: 768px) {
.hero__container {
grid-template-columns: 1fr;
}
.hero__image {
order: -1;
}
}
.features {
padding: 4rem 0;
background: linear-gradient(180deg, var(--color-surface) 0%, #fff 100%);
}
.features__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 1rem;
}
.feature-card {
background: white;
padding: 2rem 1.5rem;
border-radius: var(--radius);
box-shadow: var(--shadow);
text-align: center;
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-4px);
}
.feature-card__icon {
width: 60px;
height: 60px;
background: var(--color-primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
margin: 0 auto 1.2rem;
}
.feature-card h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
}
.feature-card p {
color: var(--color-muted);
font-size: 0.95rem;
}
@media (max-width: 768px) {
.features__grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 480px) {
.features__grid {
grid-template-columns: 1fr;
}
}
.specs {
padding: 4rem 0;
}
.specs__table {
max-width: 700px;
margin: 2rem auto 0;
background: var(--color-surface);
border-radius: var(--radius);
overflow: hidden;
}
.specs__row {
display: grid;
grid-template-columns: 200px 1fr;
padding: 1rem 1.5rem;
border-bottom: 1px solid var(--color-border);
}
.specs__row:last-child {
border-bottom: none;
}
.specs__label {
font-weight: 600;
color: var(--color-primary);
}
.specs__value {
color: var(--color-text);
}
.reviews {
padding: 4rem 0;
background: var(--color-surface);
}
.reviews__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 2.5rem;
}
.review-card {
background: white;
padding: 2rem;
border-radius: var(--radius);
box-shadow: var(--shadow);
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.review-card__stars {
color: var(--color-accent);
}
.review-card__text {
font-style: italic;
color: var(--color-muted);
}
.review-card__author {
display: flex;
align-items: center;
gap: 0.8rem;
margin-top: auto;
}
.review-card__avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--color-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.9rem;
}
.review-card__author strong {
display: block;
font-size: 0.95rem;
}
.review-card__author span {
font-size: 0.8rem;
color: var(--color-muted);
}
@media (max-width: 768px) {
.reviews__grid {
grid-template-columns: 1fr;
}
}
.order {
padding: 4rem 0;
}
.order__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.order__grid > * {
min-width: 0;
max-width: 100%;
}
.order__visual img {
width: 100%;
height: auto;
border-radius: var(--radius);
object-fit: contain;
aspect-ratio: 4/3;
margin-bottom: 1.5rem;
}
.order__steps p {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.8rem;
font-size: 0.95rem;
}
.order__steps i {
color: #16a34a;
}
.order__formwrap h2 {
text-align: left;
margin-bottom: 0.5rem;
}
.order__formwrap > p {
color: var(--color-muted);
margin-bottom: 1.5rem;
}
.order__form {
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.order__form label {
display: flex;
flex-direction: column;
font-size: 0.9rem;
font-weight: 500;
}
.order__form input {
margin-top: 0.3rem;
padding: 0.8rem 1rem;
border: 1px solid var(--color-border);
border-radius: 8px;
font-family: inherit;
font-size: 1rem;
width: 100%;
max-width: 100%;
}
.order__form button {
width: 100%;
max-width: 100%;
}
.checkbox-label {
flex-direction: row !important;
align-items: center;
gap: 0.5rem;
}
.checkbox-label input {
width: 18px;
height: 18px;
}
@media (max-width: 768px) {
.order__grid {
grid-template-columns: 1fr;
}
}
.disclaimers {
background: var(--color-primary);
color: #e2e8f0;
padding: 3rem 0;
font-size: 0.9rem;
}
.disclaimers__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.disclaimers h3 {
color: white;
margin-bottom: 0.8rem;
font-size: 1.2rem;
}
.footer {
background: #f1f5f9;
border-top: 1px solid var(--color-border);
padding: 3rem 0 2rem;
margin-top: auto;
}
.footer__grid {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 2rem;
margin-bottom: 2rem;
}
.footer__brand .logo {
margin-bottom: 0.5rem;
}
.footer__desc {
color: var(--color-muted);
font-size: 0.95rem;
}
.footer__contacts p {
margin-bottom: 0.3rem;
font-size: 0.95rem;
color: var(--color-muted);
}
.footer__legal h4 {
font-size: 0.95rem;
font-weight: 700;
margin-bottom: 0.8rem;
color: var(--color-text);
}
.footer__legal ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.footer__legal a {
font-size: 0.9rem;
color: var(--color-muted);
transition: color 0.2s;
}
.footer__legal a:hover {
color: var(--color-accent);
}
.footer__disclaimer {
border-top: 1px solid var(--color-border);
padding-top: 1.5rem;
font-size: 0.9rem;
color: var(--color-muted);
line-height: 1.6;
}
.footer__copy {
text-align: center;
margin-top: 1.5rem;
font-size: 0.9rem;
color: var(--color-muted);
}
@media (max-width: 768px) {
.footer__grid {
flex-direction: column;
}
.specs__row,
.disclaimers__grid {
grid-template-columns: 1fr;
}
}
.legal-content {
word-break: break-word;
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
.legal-content h1 {
font-size: 2rem;
margin-bottom: 1.2rem;
font-family: var(--font-heading);
}
.legal-content h2 {
font-size: 1.6rem;
margin-top: 2rem;
margin-bottom: 0.8rem;
font-family: var(--font-heading);
text-align: left;
}
.legal-content h3 {
font-size: 1.3rem;
margin-top: 1.5rem;
margin-bottom: 0.6rem;
font-family: var(--font-heading);
}
.legal-content p {
font-size: 1rem;
line-height: 1.7;
color: #333;
margin-bottom: 1rem;
}
.legal-content ul,
.legal-content ol {
margin: 1rem 0 1rem 1.5rem;
line-height: 1.7;
}
.legal-content a {
color: var(--color-primary);
text-decoration: underline;
}
.legal-content a:hover {
color: var(--color-accent);
}
.thanks-page {
word-break: break-word;
}
.thanks-hero {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
min-height: calc(100vh - 200px);
background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}
.thanks-card {
max-width: 600px;
text-align: center;
padding: 3rem 2rem;
background: white;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(13, 148, 136, 0.15);
}
.thanks-card__logo {
margin: 0 auto 1.5rem;
display: block;
}
.thanks-card__title {
font-size: 2.2rem;
color: var(--color-primary);
margin-bottom: 1rem;
font-family: var(--font-heading);
}
.thanks-card__text {
font-size: 1.2rem;
color: var(--color-muted);
margin-bottom: 1rem;
line-height: 1.6;
}
.thanks-card__text--small {
font-size: 1rem;
color: #64748b;
line-height: 1.6;
}

/* ========== LEGAL DOCUMENTS STYLES (Impressum, Datenschutz, AGB, Cookie, Kontakt) ========== */
.legal {
padding: 4rem 0;
background: var(--color-bg);
word-break: break-word;
}
.legal .container {
max-width: 900px;
margin: 0 auto;
}
.legal h1 {
font-size: clamp(2rem, 6vw, 2.8rem);
color: var(--color-primary);
margin-bottom: 1.5rem;
border-bottom: 3px solid var(--color-accent);
padding-bottom: 0.75rem;
display: inline-block;
font-family: var(--font-heading);
}
.legal h2 {
font-size: clamp(1.4rem, 4vw, 1.8rem);
margin-top: 2rem;
margin-bottom: 1rem;
text-align: left;
color: var(--color-text);
border-left: 4px solid var(--color-primary);
padding-left: 1rem;
}
.legal h3 {
font-size: 1.3rem;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
color: var(--color-primary);
font-family: var(--font-heading);
}
.legal p {
margin-bottom: 1rem;
line-height: 1.7;
color: var(--color-text);
}
.legal strong {
color: var(--color-primary);
}
.legal a {
color: var(--color-primary);
text-decoration: underline;
transition: color 0.2s;
}
.legal a:hover {
color: var(--color-accent);
}
.legal ul, .legal ol {
margin: 1rem 0 1rem 2rem;
line-height: 1.7;
color: var(--color-text);
}
.legal li {
margin-bottom: 0.5rem;
}
.legal hr {
margin: 2rem 0;
border: none;
border-top: 1px solid var(--color-border);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
.legal {
padding: 2rem 0;
}
.legal .container {
padding: 0 1.25rem;
}
.legal h2 {
padding-left: 0.75rem;
}
.legal ul, .legal ol {
margin-left: 1.25rem;
}
}
[data-aos="fade-right"]:not(.aos-animate) {
transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
transform: translate3d(32px, 0, 0) !important;
}
@media (max-width: 900px) {
[data-aos] {
transform: none !important;
opacity: 1 !important;
transition: none !important;
}
.hero__container > *,
.order__grid > *,
.features__grid > *,
.reviews__grid > * {
min-width: 0;
max-width: 100%;
}
}
@media (max-width: 640px) {
.nav__notice {
word-break: break-all;
}
.logo a span {
word-break: break-all;
min-width: 0;
flex: 1;
}
.footer__contacts,
.footer__legal {
word-break: break-all;
}
.logo a {
flex-direction: column;
}
.specs__row {
grid-template-columns: 1fr;
min-width: 0;
gap: 8px;
}
}
@media (max-width: 480px) {
.container,
.hero__container,
.nav__container {
padding-left: 1rem;
padding-right: 1rem;
}
.order__form {
padding: 0;
}
.thanks-card {
padding: 2rem 1.25rem;
}
.section-subtitle {
font-size: 1rem;
}
}