@keyframes scroll-arrow-fade-in {
  to {
    opacity: 1;
  }
}
@keyframes scroll-arrow-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate3d(0, 0, 0) rotate(-45deg);
  }
  40% {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  60% {
    transform: translate3d(0, -5px, 0) rotate(-45deg);
  }
}
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
#scroll-down-arrow {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: calc(100% + 7rem);
    left: calc(50% - 12px);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: scroll-arrow-fade-in 0.5s ease 7s forwards;
    will-change: opacity;
}
#scroll-down-arrow::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-left: 2px solid var(--color-dark);
    border-bottom: 2px solid var(--color-dark);
    transform: translate3d(0, 0, 0) rotate(-45deg);
    transform-origin: center;
    animation: scroll-arrow-bounce 2s infinite 7.5s;
    will-change: transform, opacity;
    backface-visibility: hidden;
}
#scroll-down-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    animation: none;
}
#scroll-down-arrow.hidden::before {
    animation: none;
    transform: translate3d(0, 0, 0) rotate(-45deg);
}
#produkt .text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0vh;
    height: 100%;
}
#produkt .step-list {
    margin-top: 2rem;
}
#produkt .step {
    opacity: 0;
    transform: translateY(20px);
}
#produkt .step-03 p {
    text-align: left;
}
section {
    padding: 120px 0;
}
.text-center {
    text-align: center;
}
.text-center p {
    margin-left: auto;
    margin-right: auto;
}
.hero-section {
    padding-top: 100px;
    text-align: center;
}
.hero-subheadline {
    font-size: 1.25rem;
    max-width: 55ch;
    margin: 24px auto 40px;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}
@media(min-width: 992px) {
 .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
}
 .alt-layout .showcase-grid .text-content {
    order: 2;
}
    .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}
    .story-grid.alt-layout .text-content {
    order: -1;
}
}
.step-list {
    margin-top: 2rem;
}
.step {
    display: grid !important;
    grid-template-columns: 30px 130px 1fr !important;
    gap: 0 1.5rem;
}
.step h3 {
    white-space: normal !important;
    word-wrap: break-word;
    grid-column: 2;
    font-size: 1.5rem;
    margin: 0;
}
.step span {
    grid-column: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding-top: 0.2rem;
}
.step p {
    grid-column: 3;
    font-size: 1rem;
    max-width: 40ch;
    text-align: left;
    padding-top: 0.2rem;
}
.security-section {
    background-color: var(--color-white);
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}
.security-feature {
    text-align: center;
    border-radius: 24px;
    padding: 1.5rem;
    background-color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.security-feature svg {
    width: 48px;
    height: 48px;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}
.security-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.security-feature p {
    font-size: 1rem;
    margin: 0 auto;
    max-width: 35ch;
}
.faq-section {
    background-color: var(--color-light);
}
.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
    border-top: 1px solid var(--color-border);
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2rem 0;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-item[open] summary {
    color: var(--color-dark);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    font-size: 1.1rem;
    padding-bottom: 2rem;
}
.footer-cta-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: 11.25rem 1rem 12rem !important;
}
.footer-cta-section .headline-primary {
    color: var(--color-text-secondary);
    margin-top: 2rem;
}
.footer-cta-section .headline-secondary {
    color: var(--color-white);
}
.footer-cta-section p {
    color: var(--color-border);
    max-width: 57ch;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}
.footer-cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    margin-bottom: 4rem;
}
.footer-cta-section .btn-primary:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}
.footer-cta-section .reveal-up > a.btn-large {
    margin-top: 3rem;
}
.section-headline {
    margin-bottom: 1rem;
}
.visual-content {
    width: 100%;
}
.image-placeholder {
    width: 100%;
    aspect-ratio: var(--aspect-ratio, 1/1);
    background-color: var(--color-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-text-secondary);
}
.showcase-section {
    padding: 120px 0;
}
.link-arrow {
    display: inline-block;
    color: var(--color-text-primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 2rem;
}
.link-arrow::after {
    content: ' →';
    margin-left: 5px;
    transition: transform 0.2s ease;
    display: inline-block;
}
.link-arrow:hover::after {
    transform: translateX(5px);
}
.image-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.legal-page-body {
    background-color: var(--color-light);
}
.header-subpage {
    background-color: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-subpage .container {
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-subpage .logo {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}
.header-subpage .logo-icon {
    width: 32px;
    height: 32px;
}
.header-subpage .header-actions {
    display: flex;
    gap: 12px;
}
.legal-page-body .legal-container, .legal-container {
    max-width: 770px !important;
    margin: 4rem auto;
    padding: 4rem !important;
    background-color: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.legal-container ul {
    list-style: none;
    padding-left: 0;
}
.legal-container h1 {
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}
.legal-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
    color: var(--color-dark);
}
.legal-container p, .legal-container address, .legal-container li {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}
.legal-container .stand {
    text-align: center;
    width: 100%;
    color: var(--color-text-tertiary);
    margin-bottom: 3rem;
    max-width: none;
}
.legal-container a {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: underline;
}
.legal-container a:hover {
    color: var(--color-special-accent);
}
.legal-container .pricing-section-note p {
    width: 100%;
    text-align: center;
    max-width: none;
}
.legal-container > h2:first-of-type {
    margin-top: 2.5rem;
}
.legal-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.risk-warning-box {
    background-color: var(--color-light);
    border-left: 5px solid var(--color-special-accent);
    padding: 1.5rem;
    margin: 2rem 0 3rem 0;
    border-radius: 8px;
}
.risk-warning-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--color-dark);
}
.risk-warning-box p {
    margin-bottom: 0;
    font-size: 1rem;
    max-width: none;
}
.legal-header-group {
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
}
.legal-header-group.is-overview-page {
    margin-bottom: 5rem;
    border-bottom: none;
    padding-bottom: 0;
    text-align: center;
}
.is-overview-page + h2,
.is-overview-page + section > h2 {
    margin-top: 0 !important;
}
.legal-container > section {
    padding: 0;
}
.legal-container > header + section > h2 {
    margin-top: 2.5rem;
}
.legal-container {
    max-width: 800px !important;
    width: 100%;
    margin: 4rem auto;
    padding: 4rem 3rem !important;
    background-color: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}
.legal-container p, .legal-container li, .legal-container address, .legal-container h2, .legal-container h3 {
    max-width: none !important;
    width: 100%;
    text-align: left;
}
.legal-brand-signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 5rem;
}
.brand-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
    letter-spacing: -0.01em;
    line-height: 1.4;
}
.brand-subtitle {
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-left: 0.3rem;
}
.brand-origin {
    font-size: 0.9rem !important;
    color: var(--color-text-tertiary) !important;
    margin: 0 !important;
    font-weight: 500;
}
@media (max-width: 600px) {
    .brand-title {
    display: flex;
    flex-direction: column;
}
    .brand-subtitle {
    margin-left: 0;
    margin-top: 0.1rem;
    font-size: 1.1rem;
}
}
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.pricing-list li.has-description {
    padding-bottom: 0.1rem;
}
.pricing-list li span:last-child {
    font-weight: 600;
    color: var(--color-text-primary);
}
.pricing-list .tooltip-icon {
    z-index: 2;
}
.pricing-list .tooltip-icon .tooltip-text {
    color: var(--color-white);
    font-weight: 400;
    z-index: 1100;
}
.pricing-list li.price-description {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    padding: 0 0 1rem 0;
    width: 55%;
    margin-left: auto;
}
.pricing-list li.price-description span {
    font-weight: 400;
    color: var(--color-text-secondary);
}
.pricing-section-note {
    margin-top: 2rem;
    font-size: 0.9em;
}
.note-important {
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-special-accent);
    margin-top: 2rem;
}
.note-important p {
    color: var(--color-dark);
    margin: 0;
    line-height: 1.5;
}
.support-page-body {
    background-color: var(--color-light);
}
.support-header {
    background-color: var(--color-white);
    text-align: center;
    padding: 4rem 1rem;
    border-bottom: 1px solid var(--color-border);
}
.support-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.support-header .hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 55ch;
    margin: 1.5rem auto 0;
}
.search-section {
    padding: 3rem 0;
}
.search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.search-container svg {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    color: var(--color-text-tertiary);
}
#faq-search {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 4rem;
    font-size: 1rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
#faq-search:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 4px rgba(26, 24, 23, 0.1);
}
.faq-container {
    padding-bottom: 4rem;
}
.faq-item.hidden-faq {
    display: none;
}
.contact-section {
    padding-top: 12rem !important;
    padding-bottom: 0 !important;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.contact-section .container {
    padding-bottom: 5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 5rem auto 0;
    align-items: stretch;
}
@media (min-width: 768px) {
    .contact-grid {
    grid-template-columns: 1fr 1fr;
}
}
.contact-card {
    background-color: var(--color-light);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}
.contact-card p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0 auto 2rem auto;
    max-width: 30ch;
}
.contact-card .btn, .social-icon-wrapper {
    margin-top: auto;
}
.contact-card .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    padding: 0 32px !important;
    line-height: 1 !important;
    font-size: 1rem;
    border-radius: 15px;
    background-color: var(--color-dark);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease-out;
    border: none;
    margin-top: auto;
}
.contact-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.social-icon-wrapper {
    height: 54px !important;
    min-height: 54px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: auto;
}
.social-icon-btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease-out;
    padding: 0;
}
.social-icon-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.social-icon-btn img {
    height: 28px;
    width: 28px;
    object-fit: contain;
    display: block;
}
.about-us-page {
    background-color: var(--color-white);
}
.about-hero {
    background-color: var(--color-light);
    text-align: center;
    padding: 6rem 1rem;
}
.about-hero .section-headline {
    font-size: clamp(3rem, 8vw, 5rem);
}
.about-hero .hero-subheadline {
    font-size: 1.25rem;
    max-width: 55ch;
    margin: 1.5rem auto 0;
    color: var(--color-text-secondary);
}
.story-section {
    padding: 6rem 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}
@media(min-width: 992px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
    .story-grid.alt-layout .text-content {
        order: -1;
    }
}
.story-grid h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.story-grid p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.story-grid p a {
    color: inherit;
    text-decoration: none;
}
.story-grid img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}
.visually-hidden,
.legal-container .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    max-width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.image-wrapper {
    width: 100%;
    display: block;
    transform: translateZ(0);
}
.image-wrapper img, .responsive-img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.reveal.revealed img {
    will-change: auto !important;
    transform: none !important;
}
