/* ============================================
   CANVAORA — Design System
   Dark Luxury: Midnight Black + Gold
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

:root {
    --bg:           #0A0A0F;
    --surface:      #13131A;
    --surface-2:    #1C1C28;
    --border:       #2A2A3A;
    --border-light: #3A3A50;
    --gold:         #C9A84C;
    --gold-light:   #E8C97A;
    --gold-dim:     rgba(201, 168, 76, 0.15);
    --text:         #F0EDE8;
    --text-muted:   #7A7A8A;
    --text-dim:     #4A4A5A;
    --success:      #4CAF82;
    --error:        #E05555;

    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'DM Sans', sans-serif;

    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    32px;

    --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-card:  0 4px 32px rgba(0,0,0,0.4);

    --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 56px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0A0A0F;
    font-weight: 600;
}

.btn--gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: not-allowed;
    opacity: 0.5;
}

.btn--lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* === LOGO === */
.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav__link:hover { color: var(--text); }

.header .btn { margin-left: 16px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__left {
    position: relative;
    z-index: 2;
}

.hero__right {
    position: relative;
    z-index: 2;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.hero__orb--1 {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -200px; right: -100px;
    animation: drift 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px; height: 400px;
    background: #8B6FD4;
    bottom: 0; left: -100px;
    animation: drift 16s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 300px; height: 300px;
    background: var(--gold-light);
    top: 50%; left: 40%;
    animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33%       { transform: translate(30px, -20px); }
    66%       { transform: translate(-20px, 30px); }
}

/* Karussell */
.carousel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel__slide--active {
    opacity: 1;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(transparent, rgba(10, 10, 15, 0.92));
}

.carousel__tag {
    display: inline-block;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.carousel__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    z-index: 3;
}

.carousel__arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(10, 10, 15, 0.9);
}

.carousel__arrow--prev { left: 14px; }
.carousel__arrow--next { right: 14px; }

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel__dot--active {
    width: 24px;
    background: var(--gold);
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    background: var(--gold-dim);
}

.hero__headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline em {
    font-style: italic;
    color: var(--gold);
}

.hero__sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Showcase Cards */
.hero__showcase {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 24px;
    z-index: 2;
}

.showcase-card {
    width: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.showcase-card--1 { animation-delay: 0s; }
.showcase-card--2 { animation-delay: -2s; transform: translateX(20px); }
.showcase-card--3 { animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.showcase-card--2 {
    animation: float2 6s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes float2 {
    0%, 100% { transform: translateX(20px) translateY(0); }
    50%       { transform: translateX(20px) translateY(-8px); }
}

.showcase-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.showcase-card__img {
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface-2);
}

.showcase-card__label {
    display: block;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 60px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 40px 32px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.step__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step__num {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step__text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    flex-shrink: 0;
}

/* === STILE SECTION === */
.styles-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.style-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.style-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.style-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.style-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #0A0A0F;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.style-card__img {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface-2);
    position: relative;
    overflow: hidden;
}

.style-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.style-card:hover .style-card__overlay { opacity: 1; }

.style-card__body {
    padding: 20px 24px;
}

.style-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.style-card__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === PRICING === */
.pricing {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card--featured::before {
    content: '✦ Empfohlen';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0A0A0F;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card--soon { opacity: 0.7; }

.pricing-card__soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
}

.pricing-card__header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--gold);
    display: block;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card__features {
    list-style: none;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card__features li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    margin-top: 40px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer__links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero__showcase { display: none; }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .carousel { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header .btn { display: none; }
    .nav-toggle { display: flex; }

    .steps {
        flex-direction: column;
        gap: 24px;
    }
    .step__divider {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--gold), transparent);
    }

    .style-cards,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .hero__actions { flex-direction: column; }
    .hero__trust { flex-direction: column; gap: 8px; }

    .pricing-card--featured::before {
        font-size: 0.7rem;
    }
}

/* === PAGE ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow  { animation: fadeInUp 0.6s ease 0.1s both; }
.hero__headline { animation: fadeInUp 0.6s ease 0.2s both; }
.hero__sub      { animation: fadeInUp 0.6s ease 0.3s both; }
.hero__actions  { animation: fadeInUp 0.6s ease 0.4s both; }
.hero__trust    { animation: fadeInUp 0.6s ease 0.5s both; }

/* === TOAST NOTIFICATIONS === */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    box-shadow: var(--shadow-card);
    animation: slideIn 0.3s ease;
    max-width: 320px;
}

.toast--error  { border-color: var(--error); }
.toast--success { border-color: var(--success); }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
