/* ============================================ */
/* MOMENTUM COFFEE — Strona główna CSS                  */
/* Styl: Nowoczesny ciepły (dark + amber)       */
/* ============================================ */

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

:root {
    /* Kolory */
    --bg-primary:     #1A1614;
    --bg-secondary:   #241F1C;
    --bg-card:        #2E2724;
    --bg-footer:      #141110;
    --accent:         #C8956C;
    --accent-hover:   #D4A87E;
    --accent-glow:    rgba(200, 149, 108, 0.15);
    --cream:          #F5F0EB;
    --text-muted:     #A89B91;
    --white:          #FFFFFF;
    --success:        #7AB87A;
    --gold:           #D4A843;
    --border-subtle:  rgba(168, 155, 145, 0.12);

    /* Typografia */
    --font-heading:   'Playfair Display', Georgia, serif;
    --font-body:      'Inter', -apple-system, sans-serif;
    --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-py:     120px;
    --container-px:   24px;
    --container-max:  1200px;

    /* Misc */
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --radius-xl:      24px;
    --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.3);
    --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.container--narrow {
    max-width: 800px;
}

.section-overtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.link-arrow {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-arrow:hover {
    color: var(--accent-hover);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    padding: 14px 32px;
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--border-subtle);
    padding: 14px 32px;
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn--block {
    width: 100%;
}

/* ---------- ANIMACJE ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* ============================================ */
/* NAWIGACJA                                    */
/* ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.is-scrolled {
    background: rgba(26, 22, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.nav__logo-icon {
    font-size: 24px;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition);
    border-radius: 2px;
}

.nav__burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(200, 149, 108, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 80%, rgba(200, 149, 108, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8956C' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 0 var(--container-px);
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero__overtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title em {
    color: var(--accent);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--cream);
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero__cta {
    margin-bottom: 24px;
    font-size: clamp(16px, 2vw, 18px);
}

.hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}

.hero__stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.hero__separator {
    color: var(--border-subtle);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-arrow {
    color: var(--text-muted);
    animation: bounce 2s infinite;
    display: block;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.hero__scroll-arrow:hover {
    opacity: 1;
}

/* ============================================ */
/* TRUST BAR                                    */
/* ============================================ */
.trust-bar {
    background: var(--bg-secondary);
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.trust-bar .container::-webkit-scrollbar {
    display: none;
}

.trust-bar__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-bar__logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.trust-bar__logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: default;
}

.trust-bar__logo:hover {
    opacity: 1;
    color: var(--cream);
}

/* ============================================ */
/* JAK TO DZIAŁA                                */
/* ============================================ */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

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

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(200, 149, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

.step__number {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.steps__connector {
    display: flex;
    align-items: center;
    color: var(--accent);
    opacity: 0.3;
    margin-top: 40px;
    flex-shrink: 0;
}

.how-it-works__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================ */
/* PRICING                                      */
/* ============================================ */
.pricing {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.pricing__configurator {
    margin-top: 48px;
    text-align: center;
    padding: 56px 32px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 48px var(--accent-glow);
}

.pricing__configurator .btn {
    margin-bottom: 16px;
}

.pricing__configurator-hint {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.pricing__divider {
    position: relative;
    text-align: center;
    margin: 56px 0 32px;
}

.pricing__divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-subtle);
}

.pricing__divider span {
    position: relative;
    display: inline-block;
    padding: 0 24px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card--featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(200, 149, 108, 0.15);
    z-index: 1;
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-card__price {
    margin-bottom: 8px;
}

.pricing-card__amount {
    font-family: var(--font-mono);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
}

.pricing-card__period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-card__save {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card__includes {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--cream);
    line-height: 1.5;
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__cta {
    width: 100%;
    margin-bottom: 16px;
}

.pricing-card__footer {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.pricing__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

.pricing__trust svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================ */
/* FEATURED COFFEE                              */
/* ============================================ */
.featured-coffee {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.featured-coffee__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-coffee__image-placeholder {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

/* CSS coffee bag mockup */
.coffee-bag-mockup {
    width: 200px;
    text-align: center;
}

.coffee-bag-mockup__top {
    width: 120px;
    height: 30px;
    background: var(--bg-card);
    margin: 0 auto;
    border-radius: 4px 4px 0 0;
    border: 1px solid var(--border-subtle);
    border-bottom: none;
}

.coffee-bag-mockup__body {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.coffee-bag-mockup__brand {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

.coffee-bag-mockup__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.coffee-bag-mockup__weight {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.featured-coffee__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.featured-coffee__title em {
    color: var(--accent);
    font-style: italic;
}

.featured-coffee__roaster {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.featured-coffee__roaster strong {
    color: var(--cream);
}

.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.flavor-tag {
    background: var(--accent-glow);
    border: 1px solid rgba(200, 149, 108, 0.2);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    white-space: nowrap;
}

.coffee-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.coffee-param__label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.coffee-param__value {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.featured-coffee__fomo {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.featured-coffee__fomo strong {
    color: var(--accent);
    font-weight: 700;
}

/* ============================================ */
/* TESTIMONIALS                                 */
/* ============================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.testimonials__slider {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(200, 149, 108, 0.3);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(200, 149, 108, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__info strong {
    font-size: 14px;
    color: var(--white);
}

.testimonial-card__info span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonials__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--cream);
    transition: all var(--transition);
}

.testimonials__arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-subtle);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.testimonials__dot.is-active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.testimonials__overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 15px;
    color: var(--text-muted);
}

.testimonials__overall-stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.testimonials__overall strong {
    color: var(--white);
}

/* ============================================ */
/* ROASTERS                                     */
/* ============================================ */
.roasters {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

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

.roaster-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.roaster-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(200, 149, 108, 0.3);
}

.roaster-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.roaster-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roaster-card__placeholder span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
}

.roaster-card__info {
    padding: 24px;
}

.roaster-card__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.roaster-card__city {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 8px;
}

.roaster-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.roasters__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.faq__list {
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__icon {
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer.is-open {
    max-height: 300px;
}

.faq-item__answer p {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================ */
/* NEWSLETTER                                   */
/* ============================================ */
.newsletter {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 149, 108, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter__content {
    position: relative;
    text-align: center;
}

.newsletter__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.newsletter__title em {
    color: var(--accent);
    font-style: italic;
}

.newsletter__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.newsletter__input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cream);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter__input::placeholder {
    color: var(--text-muted);
}

.newsletter__input:focus {
    border-color: var(--accent);
}

.newsletter__btn {
    flex-shrink: 0;
}

.newsletter__micro {
    font-size: 13px;
    color: var(--text-muted);
}

.newsletter__micro strong {
    color: var(--cream);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
    background: var(--bg-footer);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer__social li {
    margin-bottom: 12px;
}

.footer__social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__social a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* FLOATING CTA (mobile)                        */
/* ============================================ */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(26, 22, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.floating-cta.is-visible {
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

/* Tablet */
@media (max-width: 1199px) {
    :root {
        --section-py: 80px;
    }

    .pricing__cards {
        gap: 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card--featured {
        transform: scale(1.02);
    }

    .pricing-card--featured:hover {
        transform: scale(1.02) translateY(-4px);
    }

    .featured-coffee__grid {
        gap: 48px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

    .roasters__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    /* Nav mobile */
    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 22, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
        z-index: 1000;
    }

    .nav__menu.is-open {
        opacity: 1;
        pointer-events: all;
    }

    .nav__menu .nav__link {
        font-size: 24px;
        font-family: var(--font-heading);
        color: var(--cream);
    }

    .nav__burger {
        display: flex;
    }

    .nav__actions .btn {
        display: none;
    }

    /* Hero mobile */
    .hero__title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero__proof {
        flex-direction: column;
        gap: 4px;
    }

    .hero__separator {
        display: none;
    }

    /* Steps mobile */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .steps__connector {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .step {
        max-width: 400px;
    }

    /* Pricing mobile */
    .pricing__cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    /* Featured coffee mobile */
    .featured-coffee__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-coffee__image-placeholder {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Testimonials mobile */
    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
    }

    /* Roasters mobile */
    .roasters__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Newsletter mobile */
    .newsletter__form {
        flex-direction: column;
    }

    .newsletter__btn {
        width: 100%;
    }

    /* Footer mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Floating CTA visible */
    .floating-cta {
        display: block;
    }

    /* Extra body padding for floating CTA */
    body {
        padding-bottom: 72px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .pricing-card__amount {
        font-size: 36px;
    }

    .coffee-params {
        grid-template-columns: 1fr;
    }

    .flavor-tags {
        gap: 8px;
    }

    .flavor-tag {
        padding: 6px 12px;
        font-size: 13px;
    }

    .trust-bar__logos {
        gap: 24px;
    }

    .trust-bar__logo {
        font-size: 14px;
    }
}
