@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #e35f14;
    --orange-dark: #c24e0e;
    --orange-light: #f07840;
    --dark: #0f0f0f;
    --dark2: #1a1a1a;
    --dark3: #242424;
    --gray: #f6f6f6;
    --gray2: #e4e4e4;
    --text: #2a2a2a;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.22s ease;
    --max-w: 1180px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,15,15,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease;
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-w); margin: 0 auto; padding: 0 28px; height: 72px;
}
.nav__logo {
    font-size: 1.25rem; font-weight: 800; color: var(--white);
    display: flex; align-items: center; gap: 10px;
}
.nav__logo span { color: var(--orange); }
.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a {
    color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.95rem;
    padding: 8px 16px; border-radius: var(--radius-sm); transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600;
    font-size: 0.95rem; border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); }
.btn--outline { border: 2px solid rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--nav { padding: 10px 22px; font-size: 0.9rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--dark { background: var(--dark2); color: var(--white); }
.btn--dark:hover { background: var(--dark3); color: var(--white); }
.btn--white { background: var(--white); color: var(--dark); }
.btn--white:hover { background: var(--gray); color: var(--dark); }
.btn--ghost { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn--ghost:hover { background: var(--orange); color: var(--white); }

.hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
    flex-direction: column; gap: 5px;
}
.hamburger span {
    display: block; width: 26px; height: 2px; background: var(--white);
    transition: all 0.3s ease; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.7) 60%, rgba(227,95,20,0.15) 100%),
                url('/img/hero.jpg') center/cover no-repeat;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(227,95,20,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 700px; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    background: rgba(227,95,20,0.12); color: var(--orange); margin-bottom: 28px;
    border: 1px solid rgba(227,95,20,0.2);
}
.hero__badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.65);
    line-height: 1.6; margin-bottom: 36px; max-width: 560px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
    display: flex; gap: 48px; margin-top: 64px; padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat-num { font-size: 2.2rem; font-weight: 900; color: var(--orange); }
.hero__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section--dark { background: var(--dark2); color: var(--white); }
.section--gray { background: var(--gray); }
.section--dark2 { background: var(--dark); color: var(--white); }
.section__header { text-align: center; margin-bottom: 60px; }
.section__tag {
    display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--orange); margin-bottom: 16px;
}
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; }
.section--dark .section__title,
.section--dark2 .section__title { color: var(--white); }
.section__subtitle {
    font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 16px auto 0;
}
.section--dark .section__subtitle,
.section--dark2 .section__subtitle { color: rgba(255,255,255,0.55); }

/* ── CARDS GRID ── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
    background: var(--white); border: 1px solid var(--gray2); border-radius: var(--radius);
    padding: 36px 30px; transition: all var(--transition); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    background: rgba(227,95,20,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 20px; color: var(--orange);
}
.card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.card__link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
    font-weight: 600; font-size: 0.9rem; color: var(--orange);
}
.card__link:hover { gap: 10px; }

.card--dark { background: var(--dark3); border-color: rgba(255,255,255,0.06); }
.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: rgba(255,255,255,0.6); }
.card--dark:hover { border-color: rgba(227,95,20,0.3); }

.card--featured { border: 2px solid var(--orange); }
.card--featured::before {
    content: 'Popularne'; position: absolute; top: 16px; right: -32px;
    background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 700;
    padding: 4px 40px; transform: rotate(45deg);
}

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__img {
    border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
    background: var(--dark3); position: relative;
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__content { }
.split__tag { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px; }
.split__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.split__text { color: var(--text-muted); margin-bottom: 24px; }
.section--dark .split__title { color: var(--white); }
.section--dark .split__text { color: rgba(255,255,255,0.6); }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.check-list li {
    display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem;
}
.check-list li::before {
    content: '✓'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    background: rgba(227,95,20,0.1); color: var(--orange); font-weight: 700;
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.section--dark .check-list li { color: rgba(255,255,255,0.8); }

/* ── WHY US / REASONS ── */
.reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.reason { text-align: center; padding: 20px; }
.reason__num {
    font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1;
    margin-bottom: 12px; letter-spacing: -2px;
}
.reason__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.reason__text { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ── BRANDS ── */
.brands-carousel { overflow: hidden; width: 100%; }
.brands-row {
    display: flex; gap: 48px; align-items: center;
    width: max-content; padding: 20px 0;
}
.brands-row--left { animation: scrollLeft 30s linear infinite; }
.brands-row--right { animation: scrollRight 30s linear infinite; }
.brands-row img {
    height: 44px; width: auto; object-fit: contain;
    filter: grayscale(1) brightness(0.7); opacity: 0.5;
    transition: all 0.3s ease;
}
.brands-row img:hover { filter: grayscale(0) brightness(1); opacity: 1; }
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--dark); padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(227,95,20,0.1) 0%, transparent 70%);
}
.cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: var(--white); margin-bottom: 16px; position: relative;
}
.cta-banner__text { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--gray2); border-radius: var(--radius); margin-bottom: 12px;
    overflow: hidden; transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(227,95,20,0.3); }
.faq-item.open { border-color: var(--orange); }
.faq-q {
    padding: 20px 24px; cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; font-weight: 600; font-size: 1rem;
    background: none; border: none; width: 100%; text-align: left;
    color: var(--text); transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-q::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--orange);
    transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q::after { content: '−'; transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a__inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY / REALIZACJE ── */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.gallery__item {
    border-radius: var(--radius); overflow: hidden; position: relative;
    aspect-ratio: 4/3; background: var(--dark3); cursor: pointer;
    transition: all var(--transition);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.gallery__title { font-weight: 700; color: var(--white); font-size: 1.1rem; }
.gallery__desc { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 4px; }

/* ── DLA KOGO ── */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.audience-card {
    background: var(--dark3); border-radius: var(--radius); padding: 40px 30px;
    text-align: center; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; align-items: center;
}
.audience-card:hover { transform: translateY(-4px); border-color: rgba(227,95,20,0.3); }
.audience-card__icon { font-size: 2.5rem; margin-bottom: 20px; }
.audience-card__title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.audience-card__text { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; flex: 1; }

/* ── KONTAKT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { }
.contact-item {
    display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-item__icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: rgba(227,95,20,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--orange);
}
.contact-item__label { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.contact-item__value { color: var(--text-muted); font-size: 0.95rem; }
.contact-item__value a { color: var(--text-muted); }
.contact-item__value a:hover { color: var(--orange); }

.contact-cta {
    background: var(--dark); border-radius: var(--radius); padding: 40px;
    color: var(--white); text-align: center;
}
.contact-cta__title { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.contact-cta__text { color: rgba(255,255,255,0.6); margin-bottom: 24px; font-size: 0.95rem; }
.contact-cta__or {
    display: flex; align-items: center; gap: 16px; margin: 24px 0;
    color: rgba(255,255,255,0.3); font-size: 0.85rem;
}
.contact-cta__or::before,
.contact-cta__or::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; }
.form__label { font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--text); }
.form__input,
.form__textarea {
    padding: 12px 16px; border: 1px solid var(--gray2); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.95rem; transition: border-color var(--transition);
    background: var(--white); color: var(--text);
}
.form__input:focus,
.form__textarea:focus { outline: none; border-color: var(--orange); }
.form__textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 60px 0 24px; color: rgba(255,255,255,0.55); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer__brand span { color: var(--orange); }
.footer__desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer__heading { font-weight: 700; color: var(--white); margin-bottom: 16px; font-size: 0.95rem; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--orange-light); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem;
}
.footer__bottom a { color: rgba(255,255,255,0.4); }
.footer__bottom a:hover { color: var(--orange); }

/* ── FLOATING CTA ── */
.floating-cta {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    animation: float-in 0.6s ease 2s both;
}
.floating-cta .btn {
    box-shadow: 0 8px 32px rgba(227,95,20,0.35);
    padding: 14px 24px; font-size: 0.9rem;
}
.floating-cta .btn:hover { box-shadow: 0 12px 40px rgba(227,95,20,0.5); }
@keyframes float-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── PAGE HEADER ── */
.page-header {
    padding: 140px 0 60px; background: var(--dark2); position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(ellipse at top right, rgba(227,95,20,0.08) 0%, transparent 70%);
}
.page-header__title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white);
    position: relative; margin-bottom: 12px;
}
.page-header__sub { color: rgba(255,255,255,0.55); font-size: 1.1rem; position: relative; max-width: 600px; }
.breadcrumb {
    display: flex; gap: 8px; align-items: center; font-size: 0.85rem;
    color: rgba(255,255,255,0.4); margin-bottom: 20px; position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── SERVICE DETAILS ── */
.service-detail { margin-bottom: 48px; }
.service-detail:last-child { margin-bottom: 0; }

/* ── PROCESS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; counter-reset: step; }
.step {
    padding: 32px 24px; background: var(--white); border: 1px solid var(--gray2);
    border-radius: var(--radius); position: relative; counter-increment: step;
    transition: all var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step::before {
    content: counter(step); font-size: 2.5rem; font-weight: 900;
    color: rgba(227,95,20,0.15); line-height: 1; margin-bottom: 16px; display: block;
}
.step__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step__text { color: var(--text-muted); font-size: 0.9rem; }

/* ── TAPICERKA BANNER ── */
.tapicerka-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    border-radius: var(--radius); padding: 48px; display: flex;
    align-items: center; gap: 40px; border: 1px solid rgba(227,95,20,0.15);
}
.tapicerka-banner__content { flex: 1; }
.tapicerka-banner__title { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.tapicerka-banner__text { color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.tapicerka-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim--left { transform: translateX(-30px); }
.anim--right { transform: translateX(30px); }
.anim.visible { opacity: 1; transform: translate(0); }

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed; bottom: 28px; left: 28px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--dark2); color: var(--white); border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(10px); transition: all 0.3s ease; font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange); border-color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav__links {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(15,15,15,0.98); flex-direction: column; padding: 16px 28px 24px;
        gap: 4px; border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav__links.open { display: flex; }
    .nav__links a { width: 100%; padding: 12px 16px; }
    .nav__links .btn--nav { margin-top: 8px; justify-content: center; border-radius: var(--radius-sm); }

    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero__stats { gap: 24px; flex-wrap: wrap; }
    .hero__stat { text-align: center; flex: 1; min-width: 100px; }

    .split { grid-template-columns: 1fr; gap: 32px; }
    .split--reverse { direction: ltr; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .tapicerka-banner { flex-direction: column; padding: 32px; text-align: center; }
    .tapicerka-banner__actions { justify-content: center; }
    .gallery { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section { padding: 64px 0; }
    .container { padding: 0 20px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .cards { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .reasons { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .floating-cta { bottom: 16px; right: 16px; left: 16px; }
    .floating-cta .btn { width: 100%; justify-content: center; }
    .scroll-top { bottom: 16px; left: 16px; }
}
