/* ============================================
   LIEFERBIENE – Vanilla CSS
   Brand: #EFA310 (Yellow) · #111111 (Dark) · #FFFFFF
   ============================================ */

:root {
    --yellow: #efa310;
    --yellow-hover: #d48d0a;
    --dark: #111111;
    --white: #ffffff;
    --muted: #fafafa;
    --border: #e5e5e5;
    --text-60: rgba(17, 17, 17, 0.6);
    --text-70: rgba(17, 17, 17, 0.7);
    --text-80: rgba(17, 17, 17, 0.8);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --container: 1200px;
    --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========= RESET ========= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.05;
}
p { margin: 0; }

::selection { background: var(--yellow); color: var(--dark); }

/* ========= LAYOUT ========= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1024px) {
    .container { padding: 0 40px; }
}

.section {
    position: relative;
    padding: 96px 0;
    background: var(--white);
    overflow: hidden;
}
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section--dark { background: var(--dark); color: var(--white); }
.section--muted { background: var(--muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section__header { max-width: 780px; margin-bottom: 64px; }
.section__header--split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 64px;
}
@media (min-width: 1024px) {
    .section__header--split {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }
}

.section__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--dark);
}
.section--dark .section__title { color: var(--white); }

.section__intro {
    margin-top: 24px;
    font-size: 1.125rem;
    color: var(--text-70);
    max-width: 640px;
    line-height: 1.6;
}
.section--dark .section__intro { color: rgba(255, 255, 255, 0.7); }

.txt-yellow { color: var(--yellow); }

/* ========= HEX PATTERN ========= */
.hex-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(17, 17, 17, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.6;
}
.hex-pattern--dark {
    background-image: radial-gradient(circle at 1px 1px, rgba(239, 163, 16, 0.15) 1px, transparent 0);
    opacity: 0.4;
}
.hex-pattern--yellow {
    background-image: radial-gradient(circle at 1px 1px, rgba(17, 17, 17, 0.18) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.4;
}

/* ========= BADGE ========= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-70);
    margin-bottom: 24px;
}
.badge--dark {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}
.badge--yellow {
    background: rgba(239, 163, 16, 0.15);
    border-color: transparent;
    color: var(--dark);
}
.badge--cta {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(17, 17, 17, 0.2);
    color: var(--dark);
    backdrop-filter: blur(6px);
}
.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
}
.badge__dot--dark { background: var(--dark); }

/* ========= BUTTON ========= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; padding: 14px 20px; margin-top: 32px; }

.btn--primary { background: var(--yellow); color: var(--dark); }
.btn--primary:hover { background: var(--white); }

.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--yellow); color: var(--dark); }

.btn--white { background: var(--white); color: var(--dark); border: 1px solid rgba(17, 17, 17, 0.1); }
.btn--white:hover { background: var(--dark); color: var(--white); }

.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.link-underline {
    color: var(--dark);
    font-weight: 600;
    text-underline-offset: 4px;
}
.link-underline:hover { text-decoration: underline; }

/* ========= NAVIGATION ========= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav__logo img { height: 44px; width: auto; }

.nav__links {
    display: none;
    gap: 40px;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-70);
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--dark); }

.nav__cta { display: none; }
@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
    display: flex;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
}
@media (min-width: 768px) { .nav__toggle { display: none; } }

[hidden] { display: none !important; }
.nav__mobile {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 768px) {
    .nav__mobile { display: none !important; }
}
.nav__mobile a { font-size: 15px; font-weight: 500; color: var(--text-80); }
.nav__mobile .btn { margin-top: 8px; }

/* ========= HERO ========= */
.hero {
    position: relative;
    padding: 144px 0 80px;
    background: var(--white);
    overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 176px 0 128px; } }

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 7fr 5fr;
        gap: 56px;
    }
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.02;
    color: var(--dark);
}
.hl {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to top, rgba(239, 163, 16, 0.8) 12px, transparent 12px);
    padding: 0 2px;
}

.hero__subline {
    margin-top: 24px;
    font-size: 1.25rem;
    color: var(--text-70);
    max-width: 600px;
    line-height: 1.6;
}

.checklist { margin-top: 32px; display: grid; gap: 12px; }
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.hero__ctas {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero__meta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: var(--text-60);
}
.hero__meta span { display: flex; align-items: center; gap: 8px; }
.dot-yellow { width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); }
.sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(17, 17, 17, 0.3); }

/* Hero Visual */
.hero__visual { position: relative; }
.hero__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.25);
}
.hero__image-wrap img { width: 100%; height: 520px; object-fit: cover; }
.hero__image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.4), transparent 60%);
}

.floating-card {
    position: absolute;
    left: -12px;
    bottom: 32px;
    width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) { .floating-card { left: -40px; } }
.floating-card__top { display: flex; align-items: center; justify-content: space-between; }
.floating-card__label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-60);
}
.floating-card__live {
    font-size: 10px; font-weight: 800;
    background: var(--yellow); color: var(--dark);
    padding: 4px 8px; border-radius: 6px;
}
.floating-card__title { margin-top: 8px; font-weight: 600; }
.floating-card__desc { margin-top: 4px; font-size: 14px; color: var(--text-60); }
.floating-card__footer { margin-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.floating-card__price { font-size: 20px; font-weight: 700; }
.floating-card__fee { font-size: 12px; color: var(--text-60); }

.savings-card {
    position: absolute;
    top: -16px; right: 16px;
    width: 208px;
    background: var(--dark);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    display: none;
}
@media (min-width: 768px) { .savings-card { display: block; } }
.savings-card__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.savings-card__amount { margin-top: 4px; font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.savings-card__sub { font-size: 12px; color: var(--yellow); }

/* ========= GRID ========= */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.mt-16 { margin-top: 64px; }

/* ========= CARDS (Problem + Lösung) ========= */
.card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid;
    transition: all 0.3s ease;
}
.card--dark {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.card--dark:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(239, 163, 16, 0.4);
}
.card--light {
    background: var(--white);
    border-color: var(--border);
    color: var(--dark);
}
.card--hover:hover {
    border-color: var(--yellow);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}
.card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.card__icon--yellow { background: rgba(239,163,16,0.15); color: var(--yellow); }
.card__icon--dark { background: var(--dark); color: var(--yellow); }
.card--hover:hover .card__icon--dark { background: var(--yellow); color: var(--dark); }
.card__title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.card__text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.card--light .card__text { color: var(--text-60); }
.card__num {
    position: absolute;
    top: 20px; right: 20px;
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

/* ========= STEPS ========= */
.steps { display: grid; gap: 24px; }
.step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}
.step:hover { border-color: var(--yellow); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12); }
@media (min-width: 768px) {
    .step { grid-template-columns: 180px 1fr 2fr; padding: 40px; }
}
.step__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(6rem, 15vw, 9rem);
    line-height: 0.85;
    color: #333;
    -webkit-text-stroke: 1.5px rgba(17,17,17,0.08);
    letter-spacing: -0.06em;
}
.step__title { font-size: 1.75rem; font-weight: 700; color: var(--dark); line-height: 1.1; }
.step__desc { font-size: 1.125rem; color: var(--text-70); line-height: 1.55; }

/* ========= FEATURES ========= */
.feature-block {
    position: relative;
    border: 1px solid;
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.3s ease;
    overflow: hidden;
}
@media (min-width: 768px) { .feature-block { padding: 40px; } }
.feature-block:hover { transform: translateY(-4px); }

.feature-block--yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.feature-block--yellow .feature-block__icon { background: var(--dark); color: var(--yellow); }

.feature-block--white { background: var(--white); color: var(--dark); border-color: var(--border); }
.feature-block--white .feature-block__icon { background: var(--dark); color: var(--yellow); }

.feature-block--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.feature-block--dark .feature-block__icon { background: var(--yellow); color: var(--dark); }

.feature-block__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.feature-block__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}
.feature-block__list { display: grid; gap: 12px; font-size: 16px; }
.feature-block__list li { display: flex; align-items: flex-start; gap: 12px; }
.bullet {
    margin-top: 10px;
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.feature-block--yellow .bullet { background: var(--dark); }
.feature-block--white .bullet { background: var(--yellow); }
.feature-block--dark .bullet { background: var(--yellow); }
.feature-block--yellow .feature-block__list li { color: rgba(17,17,17,0.85); }
.feature-block--white .feature-block__list li { color: var(--text-80); }
.feature-block--dark .feature-block__list li { color: rgba(255,255,255,0.8); }

.feature-block__num {
    position: absolute;
    bottom: 24px; right: 32px;
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 12px;
    opacity: 0.2;
}

/* ========= WHY ========= */
.why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 1024px) {
    .why__grid { grid-template-columns: 5fr 7fr; gap: 48px; }
    .why__left { position: sticky; top: 112px; align-self: start; }
}
.why__right { display: grid; gap: 12px; }
.reason {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: border-color 0.2s;
}
.reason:hover { border-color: var(--yellow); }
.reason__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--yellow);
    line-height: 1;
    width: 56px;
    flex-shrink: 0;
}
.reason h3 { font-size: 1.375rem; font-weight: 600; color: var(--dark); }
.reason p { margin-top: 4px; color: var(--text-70); }

/* ========= PRICING ========= */
.pricing { align-items: stretch; }
.tier {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
@media (min-width: 768px) { .tier { padding: 40px; } }
.tier:hover { transform: translateY(-4px); border-color: var(--yellow); }

.tier--featured {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) { .tier--featured { transform: scale(1.03); } }
.tier--featured:hover { transform: translateY(-4px); }
@media (min-width: 768px) { .tier--featured:hover { transform: scale(1.03) translateY(-4px); } }

.tier__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--dark);
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.tier__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.tier__tag { font-size: 14px; color: var(--text-60); }
.tier--featured .tier__tag { color: rgba(255,255,255,0.6); }

.tier__price {
    margin-top: 32px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.tier__price-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 3.75rem);
    letter-spacing: -0.02em;
}
.tier__price-unit { font-size: 1.125rem; color: var(--text-60); }
.tier--featured .tier__price-unit { color: rgba(255,255,255,0.7); }

.tier__order { margin-top: 8px; font-size: 14px; color: var(--text-70); }
.tier__order--accent { color: var(--yellow); }

.tier__list {
    margin-top: 32px;
    display: grid;
    gap: 12px;
    flex: 1;
}
.tier__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-80);
}
.tier--featured .tier__list li { color: rgba(255,255,255,0.85); }
.check-sm {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 20px; height: 20px;
    border-radius: 6px;
    background: var(--dark);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}
.tier--featured .check-sm { background: var(--yellow); color: var(--dark); }

.pricing__note {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: rgba(17,17,17,0.55);
}

/* ========= ROI ========= */
.roi { margin-top: 16px; }

.roi-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 32px;
    overflow: hidden;
}
@media (min-width: 768px) { .roi-card { padding: 40px; } }

.roi-card--loss {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.roi-card--win {
    background: var(--yellow);
    color: var(--dark);
}
.roi-card__inner { position: relative; z-index: 2; }

.roi-card__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.roi-card__label--red { color: #ff9494; }
.roi-card__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 28px; }

.roi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.roi-row span { color: rgba(255,255,255,0.6); }
.roi-row strong { font-weight: 600; }
.roi-row--dark { border-color: rgba(17,17,17,0.15); }
.roi-row--dark span { color: rgba(17,17,17,0.65); }

.roi-highlight {
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--radius);
}
.roi-highlight--red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.roi-highlight--dark {
    background: var(--dark);
    color: var(--white);
}
.roi-highlight__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
}
.roi-highlight--red .roi-highlight__label { color: #ff9494; }
.roi-highlight__label--yellow {
    color: var(--yellow) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.roi-highlight__value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 4px;
    line-height: 1.05;
}
.roi-highlight--red .roi-highlight__value { color: #ff6b6b; }
.roi-highlight__sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.roi-highlight__sub--light { color: rgba(255,255,255,0.6); }

.roi-banner {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.roi-banner__label {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
}
.roi-banner__title {
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
}

/* ========= TRANSPARENZ ========= */
.transparency {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 1024px) { .transparency { grid-template-columns: 1fr 1fr; } }
.transparency__list { display: grid; gap: 16px; }
.transparency__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}
.transparency__list .check {
    width: 32px; height: 32px;
    border-radius: 10px;
    font-size: 16px;
}

/* ========= FINAL CTA ========= */
.final-cta {
    position: relative;
    background: var(--yellow);
    color: var(--dark);
    padding: 96px 0;
    overflow: hidden;
}
@media (min-width: 768px) { .final-cta { padding: 128px 0; } }

.final-cta__inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.final-cta__title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.02;
}
.final-cta__text {
    margin-top: 24px;
    font-size: 1.125rem;
    color: rgba(17,17,17,0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { .final-cta__text { font-size: 1.25rem; } }

.final-cta__btns {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.final-cta__meta {
    margin-top: 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(17,17,17,0.6);
}

/* ========= FOOTER ========= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
}
@media (min-width: 768px) {
    .footer__grid { grid-template-columns: 5fr 3fr 4fr; }
}
.footer__brand p {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    max-width: 420px;
    line-height: 1.6;
}
.footer__logo { height: 48px; width: auto; }

.footer__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer__list { display: grid; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer__list a:hover { color: var(--yellow); }

.footer__mail { font-size: 1.125rem; font-weight: 600; }
.footer__mail:hover { color: var(--yellow); }
.footer__sub { margin-top: 4px; font-size: 14px; color: rgba(255,255,255,0.6); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
.footer__legal { display: flex; gap: 24px; color: rgba(255,255,255,0.6); }
.footer__legal a:hover { color: var(--yellow); }
