:root {
    /* GLP3-B brand palette — sampled from the product packaging */
    --ink: #1d1d1b;            /* logo charcoal */
    --text: #1d1d1b;
    --text-muted: #6f675f;
    --bg-soft: #fffaf3;        /* warm off-white */
    --brand: #f07800;          /* box orange */
    --brand-dark: #c85a0a;     /* burnt orange — links, hover */
    --brand-amber: #f7a600;    /* gold swirl */
    --leaf: #69ab30;           /* logo "B" green */
    --leaf-deep: #00874a;      /* capsule green */
    --sand: #f0dfc7;           /* warm borders */
    --gradient-brand:
        radial-gradient(80% 65% at 18% 30%, rgba(240, 120, 0, 0.28) 0%, rgba(240, 120, 0, 0) 62%),
        radial-gradient(70% 60% at 96% 96%, rgba(105, 171, 48, 0.18) 0%, rgba(105, 171, 48, 0) 65%),
        linear-gradient(110deg,
            #ffe9c9 0%, #ffe2b8 18%, #ffeed6 45%,
            #fff6e8 72%, #fffbf4 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg-soft);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
    background: rgba(255, 250, 243, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(29, 29, 27, 0.06);
}
.site-header .logo {
    height: 34px;
    width: auto;
    transition: opacity 0.2s;
}
.site-header .logo:hover { opacity: 0.65; }

.nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    transition: background 0.25s, color 0.25s;
    letter-spacing: -0.01em;
}
.nav-link-custom:hover {
    background: rgba(29, 29, 27, 0.06);
    color: var(--text);
}
.nav-link-custom.active {
    background: rgba(29, 29, 27, 0.08);
}
.nav-cta {
    background: var(--brand);
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1.3rem;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(240, 120, 0, 0.28);
}
.nav-cta:hover {
    background: var(--brand-dark);
    box-shadow: 0 6px 20px rgba(240, 120, 0, 0.38);
    color: #fff !important;
}

.hamburger-btn {
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* ===== HERO (homepage) ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(247, 166, 0, 0.14) 0%, rgba(105, 171, 48, 0.07) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4.8vw, 3rem);
    line-height: 1.12;
    color: var(--text);
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    background: var(--brand);
    border: 1px solid transparent;
    padding: 1.05rem 2.4rem;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, background 0.3s;
    box-shadow: 0 10px 28px rgba(240, 120, 0, 0.35);
    letter-spacing: 0.005em;
}
.btn-cta:hover {
    transform: translateY(-3px);
    background: var(--brand-dark);
    box-shadow: 0 14px 38px rgba(240, 120, 0, 0.45);
    color: #fff;
}
.btn-cta svg {
    transition: transform 0.3s;
}
.btn-cta:hover svg {
    transform: translateX(3px);
}

.hero-product {
    position: relative;
    z-index: 1;
}
.hero-product img {
    width: 100%;
    max-width: 480px;
    filter:
        drop-shadow(0 30px 60px rgba(29, 29, 27, 0.14))
        drop-shadow(0 12px 24px rgba(29, 29, 27, 0.08));
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-20px) rotate(0.5deg); }
}

/* ===== FADE ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fade-up-d1 { animation-delay: 0.12s; }
.fade-up-d2 { animation-delay: 0.24s; }
.fade-up-d3 { animation-delay: 0.36s; }
.fade-up-d4 { animation-delay: 0.5s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PROMISE BAR ===== */
.promise-section {
    padding: 5rem 0;
    background: var(--bg-soft);
    position: relative;
}
.promise-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 27, 0.08), transparent);
}

.promise-card {
    background: #fff;
    border: 1px solid rgba(29, 29, 27, 0.05);
    border-radius: 20px;
    padding: 2.2rem 1.6rem 2rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.promise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-amber));
    opacity: 0;
    transition: opacity 0.3s;
}
.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(29, 29, 27, 0.08);
}
.promise-card:hover::before {
    opacity: 1;
}

.promise-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-amber));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    box-shadow: 0 4px 16px rgba(240, 120, 0, 0.2);
}
.promise-icon img {
    width: 28px;
    height: 28px;
}

.promise-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.promise-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
    font-weight: 400;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-hero {
    background: var(--gradient-brand);
    padding: 8rem 0 3rem;
}
.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0;
}
.page-hero p,
.page-hero .lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0.75rem 0 0;
    max-width: 560px;
}
.page-hero a {
    color: var(--brand-dark);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 3.5rem 0 5rem;
}

/* Usage page: step cards */
.step-card {
    background: #fff;
    border: 1px solid rgba(29, 29, 27, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(29, 29, 27, 0.06);
}
.step-card .step-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card .step-img img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}
.step-card h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.side-effects h4 {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1rem;
}
.side-effects ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-effects li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    border-bottom: 1px solid rgba(29, 29, 27, 0.04);
}
.side-effects li:last-child { border-bottom: none; }
.side-effects li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-amber));
}

/* Return page: accordion */
.page-content h2 {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.page-content h5 {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.accordion {
    --bs-accordion-border-color: rgba(29, 29, 27, 0.06);
    --bs-accordion-border-radius: 16px;
    --bs-accordion-inner-border-radius: 14px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.15rem;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.25rem;
    --bs-accordion-active-bg: #fff;
    --bs-accordion-active-color: var(--text);
    --bs-accordion-btn-focus-box-shadow: none;
}
.accordion-item {
    background: #fff;
    border: 1px solid rgba(29, 29, 27, 0.06) !important;
    border-radius: 16px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
}
.accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--text);
    box-shadow: none;
}
.accordion-button::after {
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
}
.accordion-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.accordion-body a {
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 120, 0, 0.3);
    transition: border-color 0.2s;
}
.accordion-body a:hover {
    border-bottom-color: var(--brand-dark);
}

/* Contact page: info cards */
.info-card {
    background: #fff;
    border: 1px solid rgba(29, 29, 27, 0.05);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(29, 29, 27, 0.06);
}
.info-card h3 {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}
.info-card p:last-child { margin-bottom: 0; }
.info-card a {
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 120, 0, 0.3);
    transition: border-color 0.2s;
}
.info-card a:hover {
    border-bottom-color: var(--brand-dark);
}
.info-card .phone-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: none;
    letter-spacing: -0.02em;
}
.info-card .phone-link:hover {
    color: var(--brand-dark);
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 27, 0.08), transparent);
    margin: 2.5rem 0;
}

.impressum h2 {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.impressum p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.impressum a {
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 120, 0, 0.3);
    transition: border-color 0.2s;
}
.impressum a:hover {
    border-bottom-color: var(--brand-dark);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.5);
    padding: 3.5rem 0;
}
.site-footer .logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}
.site-footer p {
    font-size: 0.8rem;
    line-height: 1.75;
    max-width: 640px;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1px;
}
.site-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* ===== OFFCANVAS ===== */
.offcanvas {
    background: var(--gradient-brand) !important;
    border-left: none !important;
    max-width: 300px;
}
.offcanvas-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}
.offcanvas-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
}
.offcanvas-body { padding: 1rem 1.5rem; }
.nav-link-mobile {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(29, 29, 27, 0.06);
    transition: color 0.2s;
}
.nav-link-mobile:last-child { border-bottom: none; }
.nav-link-mobile:hover { color: var(--brand-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero {
        text-align: center;
        padding: 7rem 0 3rem;
    }
    .hero-title {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-product {
        margin-top: 3rem;
    }
    .hero-product img {
        max-width: 320px;
    }
}
@media (max-width: 767.98px) {
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    .step-card .step-img {
        width: 100%;
        height: auto;
        padding: 1rem;
    }
}
@media (max-width: 575.98px) {
    .site-header .logo { height: 26px; }
    .hero { padding: 6.5rem 0 2.5rem; }
    .hero-product img { max-width: 240px; }
    .promise-section { padding: 3rem 0; }
    .promise-card { padding: 1.6rem 1.2rem; }
    .page-hero { padding: 7rem 0 2rem; }
    .page-content { padding: 2.5rem 0 3.5rem; }
}
