/* ============================================================
   TaskRoute — style.css   (ET Violet Edition)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-primary:       #7C3AED;
    --color-primary-dark:  #5B21B6;
    --color-primary-light: #A78BFA;
    --color-primary-pale:  #F5F3FF;

    --color-bg:            #F9FAFB;
    --color-bg-white:      #ffffff;
    --color-bg-tint:       #F5F3FF;
    --color-text:          #111827;
    --color-text-muted:    #6B7280;
    --color-text-light:    #9CA3AF;
    --color-border:        #E5E7EB;
    --color-success:       #16a34a;

    /* Hero gradient — ET purple/violet palette */
    --grad-hero: linear-gradient(135deg, #4C1D95 0%, #5B21B6 35%, #6D28D9 65%, #7C3AED 100%);
    --grad-section: linear-gradient(135deg, #6D28D9 0%, #7C3AED 60%, #8B5CF6 100%);

    --font-headline: 'Poppins', sans-serif;
    --font-body:     'Inter', sans-serif;

    --radius-sm:  6px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-pill: 100px;

    --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
    --shadow-md:     0 6px 24px rgba(0,0,0,.08);
    --shadow-lg:     0 16px 56px rgba(0,0,0,.1);
    --shadow-card:   0 2px 16px rgba(0,0,0,.06);
    --shadow-violet:    0 8px 32px rgba(109,40,217,.28);
    --shadow-violet-lg: 0 16px 48px rgba(109,40,217,.38);

    --max-width:  1160px;
    --nav-height: 70px;
    --announce-height: 40px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}
section { padding: 96px 0; }

/* ---------- Section Labels & Headings ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--color-text);
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    max-width: 580px;
    line-height: 1.78;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.visible  { opacity: 1; transform: none; }

/* ---------- Buttons — Pill style like ET ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-family: var(--font-headline);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.12);
    opacity: 0;
    transition: opacity .15s;
}
.btn:hover::before { opacity: 1; }
.btn:hover  { transform: translateY(-3px); text-decoration: none; }
.btn:active { transform: translateY(0); }

/* Shimmer on primary */
.btn-primary {
    background: var(--grad-section);
    color: #fff;
    box-shadow: var(--shadow-violet);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -130%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transform: skewX(-15deg);
    animation: shimmer 4s infinite;
}
@keyframes shimmer { 0% { left: -130%; } 60%, 100% { left: 160%; } }
.btn-primary:hover { box-shadow: var(--shadow-violet-lg); }

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-lg { padding: 18px 48px; font-size: .88rem; }
.btn-sm { padding: 10px 24px; font-size: .75rem; }

/* ---------- Announcement Bar ---------- */
.announce-bar {
    background: linear-gradient(90deg, #4C1D95 0%, #7C3AED 50%, #4C1D95 100%);
    background-size: 200% 100%;
    animation: announce-move 6s linear infinite;
    height: var(--announce-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 101;
    overflow: hidden;
}
@keyframes announce-move {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.announce-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.announce-bar p {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.announce-bar a {
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0;
}
.announce-chip {
    background: rgba(255,255,255,.2);
    border-radius: var(--radius-pill);
    padding: 2px 10px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--font-headline);
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: sticky;
    top: var(--announce-height);
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    height: var(--nav-height);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 36px;
    height: var(--nav-height);
}
.logo-link { flex-shrink: 0; line-height: 0; }
.logo-img   { height: 34px; width: auto; }

.main-nav { flex: 1; }
.nav-list  { display: flex; gap: 4px; align-items: center; }
.nav-list a {
    padding: 8px 16px;
    font-size: .85rem;
    font-weight: 600;
    font-family: var(--font-headline);
    color: var(--color-text-muted);
    border-radius: var(--radius-pill);
    transition: background .15s, color .15s;
    letter-spacing: .01em;
}
.nav-list a:hover { background: var(--color-bg); color: var(--color-text); text-decoration: none; }
.nav-cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform .22s cubic-bezier(.4,0,.2,1), opacity .22s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero — vibrant gradient like ET ---------- */
.hero {
    background: var(--grad-hero);
    padding: 72px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Decorative circles like ET */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-deco-1 {
    width: 400px; height: 400px;
    border: 60px solid rgba(255,255,255,.05);
    top: -120px; right: -120px;
}
.hero-deco-2 {
    width: 250px; height: 250px;
    border: 40px solid rgba(255,255,255,.06);
    bottom: 40px; left: -80px;
}
.hero-deco-3 {
    width: 16px; height: 16px;
    background: rgba(255,255,255,.3);
    top: 35%; right: 12%;
    animation: float 4s ease-in-out infinite;
}
.hero-deco-4 {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.2);
    bottom: 30%; left: 8%;
    animation: float 5s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* Subtle grid overlay */
.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* White wave at bottom — mimics ET curved section transition */
.hero-wave-bottom {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave-bottom svg {
    width: 100%;
    height: 80px;
    display: block;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: var(--font-headline);
    backdrop-filter: blur(4px);
}
.hero-badge-dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255,255,255,.3);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
    50%       { box-shadow: 0 0 0 7px rgba(255,255,255,.1); }
}

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    font-family: var(--font-headline);
    font-weight: 600;
    letter-spacing: .01em;
}
.trust-chip::before {
    content: '✓';
    width: 18px; height: 18px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero mock UI — now below the text, full width card */
.hero-visual {
    margin-top: 60px;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mock-ui {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 32px 80px rgba(0,0,0,.2);
}

.mock-chrome {
    background: rgba(255,255,255,.12);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot-r { background: #FF5F57; }
.mock-dot-y { background: #FFBD2E; }
.mock-dot-g { background: #28CA41; }
.mock-url-bar {
    flex: 1;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    font-family: var(--font-body);
}

.mock-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-map {
    background: rgba(20,40,80,.35);
    border-radius: var(--radius-md);
    height: 160px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}
.mock-map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 24px 24px;
}
.mock-route-line {
    position: absolute;
    top: 50%; left: 15%;
    width: 72%; height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.3));
    transform: translateY(-50%) rotate(-6deg);
    border-radius: 2px;
}
.mock-pin {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.25), 0 0 10px rgba(255,255,255,.4);
    animation: pin-pulse 2s ease-in-out infinite;
}
.mock-pin:nth-child(1) { top: 32%; left: 15%; animation-delay: 0s; background: #A78BFA; box-shadow: 0 0 0 3px rgba(167,139,250,.4);}
.mock-pin:nth-child(2) { top: 55%; left: 38%; animation-delay: .4s; background: #fbbf24; box-shadow: 0 0 0 3px rgba(251,191,36,.4);}
.mock-pin:nth-child(3) { top: 30%; left: 65%; animation-delay: .8s; background: #A78BFA; box-shadow: 0 0 0 3px rgba(167,139,250,.4);}
.mock-pin:nth-child(4) { top: 62%; left: 82%; animation-delay: 1.2s; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.4);}
@keyframes pin-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }

.mock-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.mock-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    padding: 12px;
}
.mock-stat-num {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.mock-stat-label { font-size: .67rem; color: rgba(255,255,255,.45); font-family: var(--font-headline); }

.mock-monteur-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
}
.mock-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    flex-shrink: 0;
}
.mock-row-text { flex: 1; }
.mock-row-name { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.85); font-family: var(--font-headline); line-height: 1; margin-bottom: 2px; }
.mock-row-sub  { font-size: .62rem; color: rgba(255,255,255,.4); }
.mock-tag {
    font-size: .62rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 3px 9px;
    font-family: var(--font-headline);
    letter-spacing: .04em;
}
.mock-tag-green  { background: rgba(74,222,128,.15); color: #86efac; }
.mock-tag-blue   { background: rgba(99,102,241,.15); color: #a5b4fc; }
.mock-tag-orange { background: rgba(251,191,36,.15);  color: #fde68a; }

/* ---------- Marquee Strip ---------- */
.marquee-strip {
    background: var(--color-primary-pale);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(109,40,217,.1);
    border-bottom: 1px solid rgba(109,40,217,.1);
}
.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--color-primary-pale), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(270deg, var(--color-primary-pale), transparent); }

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-run 34s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    font-family: var(--font-headline);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
}
.marquee-sep {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-primary-light);
    flex-shrink: 0;
}

/* ---------- Stats Section ---------- */
.section-stats {
    background: var(--color-bg-white);
    padding: 72px 0;
    border-bottom: 1px solid var(--color-border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.stat-item {
    padding: 44px 32px;
    text-align: center;
    border-right: 1px solid var(--color-border);
    position: relative;
    transition: background .2s;
    background: var(--color-bg-white);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--color-bg-tint); }
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-pill);
    transition: width .3s cubic-bezier(.4,0,.2,1);
}
.stat-item:hover::after { width: 48px; }

.stat-number {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.03em;
    background: var(--grad-section);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: .85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-family: var(--font-headline);
    font-weight: 600;
}

/* ---------- Social Proof / Origin ---------- */
.section-origin {
    background: var(--color-bg-tint);
    padding: 100px 0;
}
.origin-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.origin-text p {
    color: var(--color-text-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-section);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testimonial-stars span { color: #FBBF24; font-size: 1.1rem; }
.testimonial-quote-icon {
    position: absolute;
    top: 20px; right: 28px;
    font-size: 5rem;
    line-height: 1;
    color: var(--color-bg-tint);
    font-family: Georgia, serif;
    pointer-events: none;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 26px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-section);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-violet);
}
.author-info strong {
    display: block;
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-headline);
    font-size: .95rem;
}
.author-info span { font-size: .83rem; color: var(--color-text-muted); }

/* ---------- So funktioniert's ---------- */
.section-how { background: var(--color-bg-white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}
.step-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: border-color .25s, box-shadow .25s, transform .25s;
    position: relative;
    overflow: hidden;
}
.step-card:hover {
    border-color: rgba(109,40,217,.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.step-number {
    width: 60px; height: 60px;
    background: var(--grad-section);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-violet);
}
.step-card h3 {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 14px;
}
.step-card p { color: var(--color-text-muted); font-size: .94rem; line-height: 1.75; }

/* ---------- Features — ET card style, centered + colored circular icons ---------- */
.section-features { background: var(--color-bg); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 64px;
}
.feature-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: border-color .22s, box-shadow .25s, transform .25s;
}
.feature-card:hover {
    border-color: rgba(109,40,217,.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* Circular feature icons — ET style, each card gets a subtle tint */
.feature-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform .2s;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-icon svg { width: 26px; height: 26px; }

/* Varied icon colors like ET */
.feature-card:nth-child(1) .feature-icon  { background: rgba(109,40,217,.1);  } .feature-card:nth-child(1) .feature-icon svg  { color: #7C3AED; }
.feature-card:nth-child(2) .feature-icon  { background: rgba(139,92,246,.1); } .feature-card:nth-child(2) .feature-icon svg  { color: #7C3AED; }
.feature-card:nth-child(3) .feature-icon  { background: rgba(249,115,22,.1); } .feature-card:nth-child(3) .feature-icon svg  { color: #EA580C; }
.feature-card:nth-child(4) .feature-icon  { background: rgba(20,184,166,.1); } .feature-card:nth-child(4) .feature-icon svg  { color: #0D9488; }
.feature-card:nth-child(5) .feature-icon  { background: rgba(234,179,8,.1);  } .feature-card:nth-child(5) .feature-icon svg  { color: #CA8A04; }
.feature-card:nth-child(6) .feature-icon  { background: rgba(59,130,246,.1); } .feature-card:nth-child(6) .feature-icon svg  { color: #2563EB; }
.feature-card:nth-child(7) .feature-icon  { background: rgba(16,185,129,.1); } .feature-card:nth-child(7) .feature-icon svg  { color: #059669; }
.feature-card:nth-child(8) .feature-icon  { background: rgba(244,63,94,.1);  } .feature-card:nth-child(8) .feature-icon svg  { color: #E11D48; }
.feature-card:nth-child(9) .feature-icon  { background: rgba(168,85,247,.1); } .feature-card:nth-child(9) .feature-icon svg  { color: #9333EA; }
.feature-card:nth-child(10) .feature-icon { background: rgba(14,165,233,.1); } .feature-card:nth-child(10) .feature-icon svg { color: #0284C7; }
.feature-card:nth-child(11) .feature-icon { background: rgba(34,197,94,.1);  } .feature-card:nth-child(11) .feature-icon svg { color: #16A34A; }
.feature-card:nth-child(12) .feature-icon { background: rgba(245,158,11,.1); } .feature-card:nth-child(12) .feature-icon svg { color: #D97706; }
.feature-card:nth-child(13) .feature-icon { background: rgba(109,40,217,.1);  } .feature-card:nth-child(13) .feature-icon svg { color: #7C3AED; }

.feature-card h3 {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}
.feature-card p { font-size: .87rem; color: var(--color-text-muted); line-height: 1.72; }

/* ---------- Preise ---------- */
.section-pricing { background: var(--color-bg-tint); }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    align-items: start;
}
.pricing-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: box-shadow .2s;
}
.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-violet);
}
.pricing-card-header {
    background: var(--grad-hero);
    padding: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pricing-card-header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border: 40px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}
.pricing-card-header h3 {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 14px 0;
    position: relative;
}
.pricing-price .amount {
    font-family: var(--font-headline);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    color: #fff;
}
.pricing-price .unit { font-size: .85rem; opacity: .7; }
.pricing-card-header p { font-size: .86rem; opacity: .7; position: relative; }

.pricing-card-body { padding: 28px; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table tr { border-bottom: 1px solid var(--color-border); }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table td { padding: 13px 0; font-size: .9rem; }
.pricing-table td:first-child { color: var(--color-text-muted); }
.pricing-table td:last-child { text-align: right; font-weight: 700; color: var(--color-text); }
.pricing-check { color: var(--color-success); }
.pricing-free-tag {
    display: inline-block;
    background: var(--grad-section);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    padding: 2px 9px;
    margin-left: 6px;
    vertical-align: middle;
    font-family: var(--font-headline);
}
.pricing-cta { padding: 0 28px 28px; }
.pricing-cta .btn { width: 100%; justify-content: center; }

.pricing-comparison {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 20px;
    border: 1px solid rgba(109,40,217,.15);
    border-left: 4px solid var(--color-primary);
}
.pricing-comparison blockquote {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: .97rem;
    line-height: 1.78;
    border: none; padding: 0; margin: 0;
}
.pricing-comparison blockquote::before {
    content: '"';
    color: var(--color-primary);
    font-size: 2.5rem;
    line-height: .5;
    vertical-align: -.4em;
    margin-right: 3px;
    font-family: Georgia, serif;
}

/* ---------- Vertrauen — gradient section like ET purple areas ---------- */
.section-trust {
    background: var(--grad-hero);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.section-trust::before {
    content: '';
    position: absolute;
    top: -100px; right: -80px;
    width: 400px; height: 400px;
    border: 60px solid rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}

.trust-header { text-align: center; margin-bottom: 64px; position: relative; }
.trust-header .section-label { color: rgba(255,255,255,.75); letter-spacing: .18em; }
.trust-header .section-title { color: #fff; }
.trust-header .section-subtitle { color: rgba(255,255,255,.65); margin: 0 auto; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}
.trust-item {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: background .2s, transform .22s;
}
.trust-item:hover { background: rgba(255,255,255,.16); transform: translateY(-5px); }
.trust-item-icon { font-size: 2rem; margin-bottom: 16px; }
.trust-item h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-size: .95rem;
}
.trust-item p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.68; }

/* ---------- Demo CTA ---------- */
.section-demo-cta {
    background: var(--color-bg-white);
    padding: 120px 0;
    text-align: center;
}
.demo-cta-inner { max-width: 600px; margin: 0 auto; }
.demo-cta-inner p { font-size: 1.08rem; color: var(--color-text-muted); margin-bottom: 40px; line-height: 1.8; }
.demo-cta-hint {
    margin-top: 20px;
    font-size: .82rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Contact alternative links */
.hero-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 14px;
    transition: color .15s;
    font-family: var(--font-headline);
}
.hero-contact-link:hover { color: #fff; text-decoration: none; }
.hero-contact-link svg   { flex-shrink: 0; }

.cta-contact-alt {
    margin-top: 18px;
    font-size: .88rem;
    color: var(--color-text-muted);
}
.cta-contact-alt a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}
.cta-contact-alt a:hover { opacity: .8; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-text);
    color: rgba(255,255,255,.65);
    padding-top: 72px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 72px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { filter: brightness(0) invert(1); opacity: .8; }
.footer-tagline { margin-top: 16px; font-size: .86rem; color: rgba(255,255,255,.35); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    color: #fff;
    font-size: .75rem;
    margin-bottom: 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.4); font-size: .86rem; transition: color .15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.42); transition: color .15s; }
.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* ---------- Inner Pages ---------- */
.page-hero {
    background: var(--grad-hero);
    padding: 64px 0;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; top: -80px; right: -40px;
    width: 300px; height: 300px;
    border: 48px solid rgba(255,255,255,.07);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    position: relative;
}
.page-hero p { color: rgba(255,255,255,.6); margin-top: 10px; font-size: .93rem; position: relative; }
.page-content { padding: 72px 0 104px; }
.prose { max-width: 760px; }
.prose h2 {
    font-family: var(--font-headline);
    font-size: 1.4rem; font-weight: 700;
    color: var(--color-text);
    margin: 48px 0 14px;
    letter-spacing: -.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-headline); font-size: 1.05rem; font-weight: 700; color: var(--color-text); margin: 28px 0 10px; }
.prose p  { margin-bottom: 16px; line-height: 1.78; color: var(--color-text-muted); }
.prose address { font-style: normal; line-height: 1.8; color: var(--color-text-muted); }
.prose ul { margin: 12px 0 16px 20px; list-style: disc; color: var(--color-text-muted); }
.prose ul li { margin-bottom: 7px; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose .placeholder-note {
    display: block;
    background: #fff8e6; border: 1px dashed #f0b429;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: .82rem; color: #7a5000;
    margin: 6px 0 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .origin-inner  { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid    { grid-template-columns: 1fr; }
    .trust-grid    { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid  { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
    .footer-links  { grid-template-columns: repeat(2, 1fr); }
    .stats-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    :root { --announce-height: 36px; }
    section { padding: 72px 0; }
    .container { padding: 0 20px; }

    .nav-toggle { display: flex; }
    .nav-cta    { display: none; }

    .main-nav {
        position: fixed;
        top: calc(var(--announce-height) + var(--nav-height));
        left: 0; right: 0; bottom: 0;
        background: var(--color-bg-white);
        padding: 32px 24px;
        transform: translateX(100%);
        transition: transform .28s cubic-bezier(.4,0,.2,1);
        z-index: 99;
        border-top: 1px solid var(--color-border);
        overflow-y: auto;
    }
    .main-nav.nav-open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
    .nav-list li { width: 100%; }
    .nav-list a  { display: block; padding: 15px 16px; font-size: 1.1rem; border-radius: var(--radius-md); }
    .nav-mobile-cta { display: block; margin-top: 24px; width: 100%; text-align: center; }

    .announce-bar p    { font-size: .7rem; }
    .announce-chip     { display: none; }

    .hero { padding: 56px 0 110px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: .97rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .marquee-item { padding: 0 18px; font-size: .72rem; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item  { border-right: none; border-bottom: 1px solid var(--color-border); }
    .stat-item:last-child { border-bottom: none; }
    .section-stats { padding: 56px 0; }

    .features-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid    { grid-template-columns: 1fr; }
    .footer-links  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-trust-chips { gap: 14px; }
    .stats-grid { grid-template-columns: 1fr; }
}
