/*== Homepage ==*/
html,
body {
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

/*== Layout Helpers ==*/
.home-container,
.home-container-wide,
.home-container-narrow {
    width: min(100% - 32px, 1320px);
    margin-inline: auto;
}

.home-container-wide {
    max-width: 1400px;
}

.home-container-narrow {
    max-width: 1100px;
}

.section-head-center {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
}

.section-head-compact {
    margin-bottom: 20px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(229, 57, 53, 0.08);
    color: var(--primary);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/*== Hero ==*/
.hero {
    position: relative;
    padding: 40px 0 50px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(229, 57, 53, 0.65)),
    url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 122, 24, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(229, 57, 53, 0.25) 0%, transparent 50%);
    animation: heroPulse 15s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    margin: 0;
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #fff, #ffe5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.top-line {
    display: inline-block;
    padding: 0.3125rem 0.75rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
}

@keyframes heroPulse {
    from {
        opacity: 0.75;
    }

    to {
        opacity: 1;
    }
}

/*== Search ==*/
.search-modern {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 40px auto 0;
}

.search-modern input {
    flex: 1;
    min-width: 300px;
    padding: 18px;
    border: 0;
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font-size: 0.8rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.search-modern input:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.search-modern input::placeholder {
    color: var(--muted);
    opacity: 0.5;
}

.search-modern button {
    padding: 18px 36px;
    border: 0;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.25);
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.search-modern button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(229, 57, 53, 0.35);
}

/*== Teaser ==*/
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.teaser-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.teaser-banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 280px;
    padding: 24px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
}

.teaser-banner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.teaser-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 15%;
    background: var(--primary);
}

.teaser-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    transform: translateY(26px);
}

.teaser-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
}

.teaser-link h4 {
    margin: 0;
    padding-bottom: 10px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    white-space: nowrap;
}

.teaser-miet {
    background-image: url("/static/images/teaser/miet.png");
}

.teaser-eventagentur {
    background-image: url("/static/images/teaser/eventagentur.png");
}

.teaser-foto {
    background-image: url("/static/images/teaser/foto-video.png");
}

.teaser-leistungen {
    background-image: url("/static/images/teaser/design-druck.png");
}

/*== Categories ==*/
.categories-section {
    position: relative;
    overflow: visible;
}

.categories-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(229, 57, 53, 0.05), transparent 30%),
            radial-gradient(circle at 90% 10%, rgba(255, 122, 24, 0.07), transparent 28%);
    pointer-events: none;
}

.categories-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    padding: 0;
    overflow: visible;
}

.categories-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    width: 160px;
    height: fit-content;
    z-index: 10;
}

.categories-sidebar-inner {
    width: 180px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.categories-sidebar-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    margin-bottom: 12px;
    border: 1px solid rgba(229, 57, 53, 0.15);
    border-radius: 12px;
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(255, 122, 24, 0.08) 100%);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.categories-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.categories-sidebar-link {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 9px 11px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition:
            transform 0.3s ease,
            border-color 0.3s ease,
            color 0.3s ease,
            box-shadow 0.3s ease;
}

.categories-sidebar-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 4px 4px 0;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.categories-sidebar-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(255, 122, 24, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.categories-sidebar-link:hover,
.categories-sidebar-link.active {
    border-color: rgba(229, 57, 53, 0.3);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.12);
}

.categories-sidebar-link:hover {
    transform: translateX(8px);
}

.categories-sidebar-link:hover::before,
.categories-sidebar-link.active::before {
    transform: translateX(0);
}

.categories-sidebar-link:hover::after,
.categories-sidebar-link.active::after {
    opacity: 1;
}

.categories-sidebar-link.active {
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.12) 0%, rgba(255, 122, 24, 0.1) 100%);
    font-weight: 600;
}

.categories-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    min-width: 0;
}

/*== Category Blocks ==*/
.category-block {
    scroll-margin-top: 140px;
    padding: 24px;
    overflow: hidden;
    border-radius: 28px;
    background: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    border: 1px solid var(--border);
}

.category-block:nth-child(1) {
    animation-delay: 0.1s;
}

.category-block:nth-child(2) {
    animation-delay: 0.2s;
}

.category-block:nth-child(3) {
    animation-delay: 0.3s;
}

.category-block:nth-child(4) {
    animation-delay: 0.4s;
}

.category-block-hero {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.category-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 320px;
}

.category-hero-media,
.category-hero-copy {
    position: relative;
    display: flex;
    overflow: hidden;
    background: #fff;
}

.category-hero-media {
    align-items: center;
    justify-content: center;
}

.category-hero-media a {
    display: block;
    width: 100%;
}

.category-block-image {
    display: block;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    height: auto;
    min-height: 200px;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    background: #ffffff;
    padding: 0;
    box-sizing: border-box;
}

.category-block-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    background:
            linear-gradient(45deg, rgba(229, 57, 53, 0.05) 0%, rgba(255, 122, 24, 0.08) 100%);
    color: var(--muted);
    font-weight: 500;
}

.category-block-description {
    position: relative;
    grid-column: 1 / -1;              /* spans both columns */
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 40px 40px 40px 100%;
    margin-left: -100%;               /* ← pulls it into the left column */
    width: calc(200% + 40px);
    box-sizing: border-box;
}

.category-block-description::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background:
            linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.category-block-description p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

.category-items-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: -1rem;
}

.category-item-tile {
    position: relative;
    isolation: isolate;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    transition:
            transform 0.4s ease,
            border-color 0.4s ease,
            box-shadow 0.4s ease;
}

.category-item-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.03) 0%, rgba(255, 122, 24, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item-tile:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow:
            0 20px 40px rgba(229, 57, 53, 0.12),
            0 8px 16px rgba(229, 57, 53, 0.08);
}

.category-item-tile:hover::before {
    opacity: 1;
}

.category-item-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.category-product-bg {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #ffffff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px 16px 0 0;
    padding: 8px;
    box-sizing: border-box;
}

.category-item-inner span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    padding: 1px 6px;
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
    transition: color 0.2s ease;
}

.category-item-tile:hover .category-item-inner span {
    color: var(--primary);
}

.category-block-footer {
    margin-top: 40px;
    text-align: right;
}

.category-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(229, 57, 53, 0.15);
    border-radius: 12px;
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(255, 122, 24, 0.08) 100%);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition:
            transform 0.3s ease,
            background 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.category-view-all:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 57, 53, 0.3);
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(255, 122, 24, 0.12) 100%);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*== Popular Items ==*/
.popular-items-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
    transition:
            transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            box-shadow 0.4s ease,
            border-color 0.4s ease;
}

.card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.card-image {
    display: block;
    width: 100%;
    height: 220px;
    background: #fff;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.card-modern:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    margin-top: 10px;
}

.card-title {
    display: -webkit-box;
    margin-bottom: 0.5rem;
    overflow: hidden;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*== Calculator ==*/
.event-tools-section {
    position: relative;
    overflow: hidden;
}

.event-tools-head {
    position: relative;
    z-index: 1;
}

.event-tools-inline {
    display: flex;
    justify-content: center;
}

.event-tool-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    height: 100%;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 242, 0.96));
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
}

.event-tool-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
            linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(255, 122, 24, 0.07));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.event-tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 57, 53, 0.16);
    color: var(--text);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.14);
}

.event-tool-card:hover::before {
    opacity: 1;
}

.event-tool-card > * {
    position: relative;
    z-index: 1;
}

.event-tool-card--active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    padding: 32px;
}

.event-tool-form {
    display: flex;
    flex-direction: column;
}

.event-tool-title {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.budget-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-label {
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 700;
}

.form-control,
.form-select {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.2;
    outline: 0;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(229, 57, 53, 0.45);
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.08);
}

.form-select {
    padding-right: 48px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(229, 57, 53, 0.22);
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(229, 57, 53, 0.30);
}

.event-tool-result {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.04);
}

.event-tool-result-placeholder {
    color: var(--muted);
    font-weight: 600;
}

/*== Calculator Receipt ==*/
.calculator-receipt {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 26px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    color: #111827;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.receipt-header {
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(17, 24, 39, 0.35);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.receipt-line,
.receipt-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 7px 0;
    font-size: 0.9rem;
}

.receipt-line span:first-child {
    color: #6b7280;
}

.receipt-line span:last-child,
.receipt-total span:last-child {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    white-space: nowrap;
}

.receipt-divider {
    margin: 12px 0;
    border-top: 1px dashed rgba(17, 24, 39, 0.35);
}

.receipt-total {
    margin-top: 12px;
    padding: 14px 0 4px;
    border-top: 2px solid rgba(17, 24, 39, 0.85);
    font-size: 1.05rem;
    font-weight: 900;
}

.receipt-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(17, 24, 39, 0.25);
    color: #6b7280;
    font-size: 0.72rem;
    text-align: center;
}

/*== Stats ==*/
.stats-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.stats-title {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 200px);
    justify-content: space-around;
    gap: 20px;
    padding-top: 20px;
}

.stat-card {
    width: 200px;
    max-width: 200px;
    height: 100%;
    padding: 18px 12px;
    margin: 0;
    border: 2px solid var(--primary);
    border-radius: 16px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.10);
}

.stat-number {
    margin-bottom: 6px;
    background: var(--gradient);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.2;
}

/*== FAQ ==*/
.faq-section {
    padding-top: 100px;
    background: var(--bg-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 80px;
    align-items: center;
    width: 100%;
}

.faq-intro .section-title {
    margin-bottom: 18px;
    text-align: left;
}

.faq-intro .section-subtitle {
    max-width: 420px;
    margin: 0 0 26px;
}

.faq-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.10);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--text);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 760px;
    margin: -8px 0 24px;
    color: var(--muted);
    line-height: 1.7;
}

/*== Responsive ==*/
@media (max-width: 1200px) {
    .home-container,
    .home-container-wide,
    .home-container-narrow {
        width: min(100% - 48px, 1140px);
    }

    .teaser-grid,
    .popular-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 220px));
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .section-pad {
        padding: 64px 0;
    }

    .hero {
        padding: 90px 0 70px;
        clip-path: none;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        line-height: 1.15;
    }

    .top-line {
        font-size: 1rem;
    }

    .search-modern {
        max-width: 650px;
        flex-direction: column;
        gap: 14px;
    }

    .search-modern input,
    .search-modern button {
        width: 100%;
        min-width: 0;
    }

    .categories-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .categories-sidebar {
        position: static;
        display: none !important;
        width: 100%;
    }

    .categories-sidebar-inner {
        width: 100%;
    }

    .categories-sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .categories-sidebar-link {
        width: auto;
    }

    .category-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .category-hero-media {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 24px;
        overflow: hidden;
    }

    .category-block-image {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        max-width: 450px;
        max-height: none;
        margin-inline: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
    }

    .category-block-description {
        width: 100%;
        height: auto;
        padding: 28px;
        margin: 0;
    }

    .event-tool-card--active {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro {
        text-align: center;
    }

    .faq-intro .section-title,
    .faq-intro .section-subtitle {
        margin-inline: auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home-container,
    .home-container-wide,
    .home-container-narrow {
        width: min(100% - 28px, 100%);
    }

    .section-pad {
        padding: 52px 0;
    }

    .section-head-center {
        margin-bottom: 36px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .top-line {
        font-size: 0.95rem;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
    }

    .popular-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .teaser-banner {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        padding: 20px;
        overflow: hidden;
        border-radius: 24px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .teaser-banner:hover {
        transform: translateY(-4px);
    }

    .teaser-overlay {
        height: 15%;
    }

    .teaser-content {
        transform: translateY(18px);
    }

    .teaser-link h4 {
        font-size: 1rem;
    }

    .category-block {
        padding: 18px;
        border-radius: 22px;
    }

    .category-block-hero {
        margin-bottom: 20px;
    }

    .category-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .category-hero-media {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 0;
        overflow: hidden;
        border-radius: 18px;
    }

    .category-block-image {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        max-width: none;
        max-height: none;
        margin: 0;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
        border-radius: inherit;
    }

    .category-block-description {
        width: 100%;
        height: auto;
        padding: 20px;
        margin: 0;
    }

    .category-block-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .category-product-bg {
        width: 100%;
        aspect-ratio: 16 / 10;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .category-block-footer {
        margin-top: 24px;
        text-align: center;
    }

    .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
    }

    .card-modern:hover .card-image {
        transform: none;
    }

    .budget-form-grid {
        grid-template-columns: 1fr;
    }

    .event-tool-card {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .stat-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0 50px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .top-line {
        padding: 0;
        font-size: 0.9rem;
    }

    .search-modern {
        margin-top: 24px;
    }

    .search-modern input,
    .search-modern button {
        padding: 16px;
        font-size: 0.9rem;
    }

    .categories-sidebar-nav {
        flex-direction: column;
    }

    .categories-sidebar-link {
        width: 100%;
        justify-content: center;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
    }

    .category-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .popular-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .teaser-banner {
        padding: 16px;
        border-radius: 20px;
    }

    .teaser-link h4 {
        font-size: 0.9rem;
    }

    .category-item-inner span {
        font-size: 0.8rem;
        min-height: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        max-width: 260px;
        margin-inline: auto;
    }

    .faq-item summary {
        padding: 18px 0;
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 430px) {
    .home-container,
    .home-container-wide,
    .home-container-narrow {
        width: min(100% - 20px, 100%);
    }

    .teaser-grid {
        grid-template-columns: 1fr;
    }

    .category-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .popular-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .teaser-banner {
        padding: 12px;
        border-radius: 18px;
    }

    .teaser-link h4 {
        font-size: 0.85rem;
    }

    .category-item-inner span {
        font-size: 0.75rem;
    }
}

